2024-01-27T23:14:01.259 INFO:root:teuthology version: 0.0.1.dev251+gc856e0f 2024-01-27T23:14:01.259 DEBUG:teuthology.run:Teuthology command: teuthology --verbose --owner scheduled_yuriw@teuthology --name yuriw-2024-01-26_16:10:31-rados-pacific-release-distro-default-smithi --archive /home/teuthworker/archive/yuriw-2024-01-26_16:10:31-rados-pacific-release-distro-default-smithi/7535127 --description rados/cephadm/smoke-roleless/{0-distro/rhel_8.6_container_tools_rhel8 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-bucket 3-final} -- /home/teuthworker/archive/yuriw-2024-01-26_16:10:31-rados-pacific-release-distro-default-smithi/7535127/orig.config.yaml 2024-01-27T23:14:01.296 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-01-27T23:14:01.380 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/yuriw-2024-01-26_16:10:31-rados-pacific-release-distro-default-smithi/7535127 branch: pacific-release description: rados/cephadm/smoke-roleless/{0-distro/rhel_8.6_container_tools_rhel8 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-bucket 3-final} email: null first_in_suite: false job_id: '7535127' kernel: kdb: true sha1: distro last_in_suite: false machine_type: smithi name: yuriw-2024-01-26_16:10:31-rados-pacific-release-distro-default-smithi no_nested_subset: false nuke-on-error: true openstack: - volumes: count: 4 size: 10 os_type: rhel os_version: '8.6' overrides: admin_socket: branch: pacific-release 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: a72a5dace2353a54147d37bd2699a2a482507966 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: a72a5dace2353a54147d37bd2699a2a482507966 selinux: whitelist: - scontext=system_u:system_r:logrotate_t:s0 workunit: branch: pacific-release sha1: 585bdf827237450fb80df4a856eba434a64948fa owner: scheduled_yuriw@teuthology priority: 75 repo: https://github.com/ceph/ceph-ci.git roles: - - host.a - client.0 - - host.b - client.1 seed: 6332 sha1: a72a5dace2353a54147d37bd2699a2a482507966 sleep_before_teardown: 0 subset: 111/120000 suite: rados suite_branch: pacific-release suite_path: /home/teuthworker/src/github.com_ceph_ceph-c_585bdf827237450fb80df4a856eba434a64948fa/qa suite_relpath: qa suite_repo: https://github.com/ceph/ceph-ci.git suite_sha1: 585bdf827237450fb80df4a856eba434a64948fa targets: smithi073.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBD1jr2PBkfiBOz1zLNWHnZt13lAFWpjt6GJeYYqA5HFCB/xp9h9RUytssq/jbCs5zkNCgtgqPQRYTFxvF1sBfI8= smithi186.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBBo0THWkZaj8NWt1tKiRZ3eCsTf7cSvoEEN/eDG31ICG9zxE5E5XMyIbSVcmkt71Oms9CfmXkQiVrXWGYoFWp1Y= 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: c856e0f9244dd29a50697123b480d63f16a4ed81 timestamp: 2024-01-26_16:10:31 tube: smithi user: yuriw verbose: true worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.2226885 2024-01-27T23:14:01.380 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/github.com_ceph_ceph-c_585bdf827237450fb80df4a856eba434a64948fa/qa; will attempt to use it 2024-01-27T23:14:01.381 INFO:teuthology.run:Found tasks at /home/teuthworker/src/github.com_ceph_ceph-c_585bdf827237450fb80df4a856eba434a64948fa/qa/tasks 2024-01-27T23:14:01.381 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-01-27T23:14:01.382 INFO:teuthology.task.internal:Checking packages... 2024-01-27T23:14:01.408 INFO:teuthology.task.internal:Checking packages for os_type 'rhel', flavor 'default' and ceph hash 'a72a5dace2353a54147d37bd2699a2a482507966' 2024-01-27T23:14:01.408 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-01-27T23:14:01.409 INFO:teuthology.packaging:ref: None 2024-01-27T23:14:01.409 INFO:teuthology.packaging:tag: None 2024-01-27T23:14:01.409 INFO:teuthology.packaging:branch: pacific-release 2024-01-27T23:14:01.409 INFO:teuthology.packaging:sha1: a72a5dace2353a54147d37bd2699a2a482507966 2024-01-27T23:14:01.409 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F8%2Fx86_64&ref=pacific-release 2024-01-27T23:14:01.553 INFO:teuthology.task.internal:Found packages for ceph version 16.2.14-508.ga72a5dac 2024-01-27T23:14:01.554 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-01-27T23:14:01.560 INFO:teuthology.task.internal:no buildpackages task found 2024-01-27T23:14:01.560 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-01-27T23:14:01.663 INFO:teuthology.task.internal:Saving configuration 2024-01-27T23:14:01.677 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-01-27T23:14:01.682 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-01-27T23:14:01.708 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi073.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2024-01-26_16:10:31-rados-pacific-release-distro-default-smithi/7535127', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'rhel', 'os_version': '8.6', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-01-27 23:08:38.351205', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBD1jr2PBkfiBOz1zLNWHnZt13lAFWpjt6GJeYYqA5HFCB/xp9h9RUytssq/jbCs5zkNCgtgqPQRYTFxvF1sBfI8='} 2024-01-27T23:14:01.732 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi186.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2024-01-26_16:10:31-rados-pacific-release-distro-default-smithi/7535127', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'rhel', 'os_version': '8.6', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-01-27 23:08:38.349785', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBBo0THWkZaj8NWt1tKiRZ3eCsTf7cSvoEEN/eDG31ICG9zxE5E5XMyIbSVcmkt71Oms9CfmXkQiVrXWGYoFWp1Y='} 2024-01-27T23:14:01.732 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-01-27T23:14:01.738 INFO:teuthology.task.internal:roles: ubuntu@smithi073.front.sepia.ceph.com - ['host.a', 'client.0'] 2024-01-27T23:14:01.738 INFO:teuthology.task.internal:roles: ubuntu@smithi186.front.sepia.ceph.com - ['host.b', 'client.1'] 2024-01-27T23:14:01.738 INFO:teuthology.run_tasks:Running task console_log... 2024-01-27T23:14:01.806 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7fa4a99760d0>, signals=[15]) 2024-01-27T23:14:01.806 INFO:teuthology.run_tasks:Running task internal.connect... 2024-01-27T23:14:01.812 INFO:teuthology.task.internal:Opening connections... 2024-01-27T23:14:01.812 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi073.front.sepia.ceph.com 2024-01-27T23:14:01.814 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi073.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-01-27T23:14:01.890 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi186.front.sepia.ceph.com 2024-01-27T23:14:01.891 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi186.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-01-27T23:14:01.964 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-01-27T23:14:01.970 DEBUG:teuthology.orchestra.run.smithi073:> uname -m 2024-01-27T23:14:01.991 INFO:teuthology.orchestra.run.smithi073.stdout:x86_64 2024-01-27T23:14:01.991 DEBUG:teuthology.orchestra.run.smithi073:> cat /etc/os-release 2024-01-27T23:14:02.051 INFO:teuthology.orchestra.run.smithi073.stdout:NAME="Red Hat Enterprise Linux" 2024-01-27T23:14:02.051 INFO:teuthology.orchestra.run.smithi073.stdout:VERSION="8.6 (Ootpa)" 2024-01-27T23:14:02.051 INFO:teuthology.orchestra.run.smithi073.stdout:ID="rhel" 2024-01-27T23:14:02.051 INFO:teuthology.orchestra.run.smithi073.stdout:ID_LIKE="fedora" 2024-01-27T23:14:02.051 INFO:teuthology.orchestra.run.smithi073.stdout:VERSION_ID="8.6" 2024-01-27T23:14:02.051 INFO:teuthology.orchestra.run.smithi073.stdout:PLATFORM_ID="platform:el8" 2024-01-27T23:14:02.051 INFO:teuthology.orchestra.run.smithi073.stdout:PRETTY_NAME="Red Hat Enterprise Linux 8.6 (Ootpa)" 2024-01-27T23:14:02.051 INFO:teuthology.orchestra.run.smithi073.stdout:ANSI_COLOR="0;31" 2024-01-27T23:14:02.051 INFO:teuthology.orchestra.run.smithi073.stdout:CPE_NAME="cpe:/o:redhat:enterprise_linux:8::baseos" 2024-01-27T23:14:02.051 INFO:teuthology.orchestra.run.smithi073.stdout:HOME_URL="https://www.redhat.com/" 2024-01-27T23:14:02.051 INFO:teuthology.orchestra.run.smithi073.stdout:DOCUMENTATION_URL="https://access.redhat.com/documentation/red_hat_enterprise_linux/8/" 2024-01-27T23:14:02.052 INFO:teuthology.orchestra.run.smithi073.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-01-27T23:14:02.052 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:14:02.052 INFO:teuthology.orchestra.run.smithi073.stdout:REDHAT_BUGZILLA_PRODUCT="Red Hat Enterprise Linux 8" 2024-01-27T23:14:02.052 INFO:teuthology.orchestra.run.smithi073.stdout:REDHAT_BUGZILLA_PRODUCT_VERSION=8.6 2024-01-27T23:14:02.052 INFO:teuthology.orchestra.run.smithi073.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux" 2024-01-27T23:14:02.052 INFO:teuthology.orchestra.run.smithi073.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="8.6" 2024-01-27T23:14:02.052 INFO:teuthology.lock.ops:Updating smithi073.front.sepia.ceph.com on lock server 2024-01-27T23:14:02.072 DEBUG:teuthology.orchestra.run.smithi186:> uname -m 2024-01-27T23:14:02.092 INFO:teuthology.orchestra.run.smithi186.stdout:x86_64 2024-01-27T23:14:02.092 DEBUG:teuthology.orchestra.run.smithi186:> cat /etc/os-release 2024-01-27T23:14:02.151 INFO:teuthology.orchestra.run.smithi186.stdout:NAME="Red Hat Enterprise Linux" 2024-01-27T23:14:02.151 INFO:teuthology.orchestra.run.smithi186.stdout:VERSION="8.6 (Ootpa)" 2024-01-27T23:14:02.151 INFO:teuthology.orchestra.run.smithi186.stdout:ID="rhel" 2024-01-27T23:14:02.151 INFO:teuthology.orchestra.run.smithi186.stdout:ID_LIKE="fedora" 2024-01-27T23:14:02.151 INFO:teuthology.orchestra.run.smithi186.stdout:VERSION_ID="8.6" 2024-01-27T23:14:02.151 INFO:teuthology.orchestra.run.smithi186.stdout:PLATFORM_ID="platform:el8" 2024-01-27T23:14:02.151 INFO:teuthology.orchestra.run.smithi186.stdout:PRETTY_NAME="Red Hat Enterprise Linux 8.6 (Ootpa)" 2024-01-27T23:14:02.151 INFO:teuthology.orchestra.run.smithi186.stdout:ANSI_COLOR="0;31" 2024-01-27T23:14:02.151 INFO:teuthology.orchestra.run.smithi186.stdout:CPE_NAME="cpe:/o:redhat:enterprise_linux:8::baseos" 2024-01-27T23:14:02.152 INFO:teuthology.orchestra.run.smithi186.stdout:HOME_URL="https://www.redhat.com/" 2024-01-27T23:14:02.152 INFO:teuthology.orchestra.run.smithi186.stdout:DOCUMENTATION_URL="https://access.redhat.com/documentation/red_hat_enterprise_linux/8/" 2024-01-27T23:14:02.152 INFO:teuthology.orchestra.run.smithi186.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-01-27T23:14:02.152 INFO:teuthology.orchestra.run.smithi186.stdout: 2024-01-27T23:14:02.152 INFO:teuthology.orchestra.run.smithi186.stdout:REDHAT_BUGZILLA_PRODUCT="Red Hat Enterprise Linux 8" 2024-01-27T23:14:02.152 INFO:teuthology.orchestra.run.smithi186.stdout:REDHAT_BUGZILLA_PRODUCT_VERSION=8.6 2024-01-27T23:14:02.152 INFO:teuthology.orchestra.run.smithi186.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux" 2024-01-27T23:14:02.152 INFO:teuthology.orchestra.run.smithi186.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="8.6" 2024-01-27T23:14:02.152 INFO:teuthology.lock.ops:Updating smithi186.front.sepia.ceph.com on lock server 2024-01-27T23:14:02.171 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-01-27T23:14:02.178 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-01-27T23:14:02.183 INFO:teuthology.task.internal:Checking for old test directory... 2024-01-27T23:14:02.183 DEBUG:teuthology.orchestra.run.smithi073:> test '!' -e /home/ubuntu/cephtest 2024-01-27T23:14:02.186 DEBUG:teuthology.orchestra.run.smithi186:> test '!' -e /home/ubuntu/cephtest 2024-01-27T23:14:02.209 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-01-27T23:14:02.214 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-01-27T23:14:02.214 DEBUG:teuthology.orchestra.run.smithi073:> test -z $(ls -A /var/lib/ceph) 2024-01-27T23:14:02.246 DEBUG:teuthology.orchestra.run.smithi186:> test -z $(ls -A /var/lib/ceph) 2024-01-27T23:14:02.283 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-01-27T23:14:02.334 INFO:teuthology.run_tasks:Running task kernel... 2024-01-27T23:14:02.350 INFO:teuthology.task.kernel:normalize config orig: {'kdb': True, 'sha1': 'distro'} 2024-01-27T23:14:02.350 INFO:teuthology.task.kernel:config {'host.a': {'kdb': True, 'sha1': 'distro'}, 'host.b': {'kdb': True, 'sha1': 'distro'}}, timeout 300 2024-01-27T23:14:02.350 DEBUG:teuthology.orchestra.run.smithi073:> test -f /run/.containerenv -o -f /.dockerenv 2024-01-27T23:14:02.351 DEBUG:teuthology.orchestra.run.smithi186:> test -f /run/.containerenv -o -f /.dockerenv 2024-01-27T23:14:02.368 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-27T23:14:02.369 DEBUG:teuthology.orchestra.run.smithi186:> uname -r 2024-01-27T23:14:02.369 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-27T23:14:02.370 DEBUG:teuthology.orchestra.run.smithi073:> uname -r 2024-01-27T23:14:02.427 INFO:teuthology.orchestra.run.smithi186.stdout:4.18.0-513.9.1.el8_9.x86_64 2024-01-27T23:14:02.427 INFO:teuthology.task.kernel:Running kernel on smithi186: 4.18.0-513.9.1.el8_9.x86_64 2024-01-27T23:14:02.427 DEBUG:teuthology.orchestra.run.smithi186:> sudo yum install -y kernel 2024-01-27T23:14:02.429 INFO:teuthology.orchestra.run.smithi073.stdout:4.18.0-513.9.1.el8_9.x86_64 2024-01-27T23:14:02.429 INFO:teuthology.task.kernel:Running kernel on smithi073: 4.18.0-513.9.1.el8_9.x86_64 2024-01-27T23:14:02.429 DEBUG:teuthology.orchestra.run.smithi073:> sudo yum install -y kernel 2024-01-27T23:14:03.888 INFO:teuthology.orchestra.run.smithi186.stdout:Updating Subscription Management repositories. 2024-01-27T23:14:03.888 INFO:teuthology.orchestra.run.smithi186.stdout:Unable to read consumer identity 2024-01-27T23:14:03.943 INFO:teuthology.orchestra.run.smithi073.stdout:Updating Subscription Management repositories. 2024-01-27T23:14:03.943 INFO:teuthology.orchestra.run.smithi073.stdout:Unable to read consumer identity 2024-01-27T23:14:04.172 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:14:04.173 INFO:teuthology.orchestra.run.smithi073.stdout:This system is not registered with an entitlement server. You can use subscription-manager to register. 2024-01-27T23:14:04.173 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:14:04.188 INFO:teuthology.orchestra.run.smithi186.stdout: 2024-01-27T23:14:04.188 INFO:teuthology.orchestra.run.smithi186.stdout:This system is not registered with an entitlement server. You can use subscription-manager to register. 2024-01-27T23:14:04.188 INFO:teuthology.orchestra.run.smithi186.stdout: 2024-01-27T23:14:05.909 INFO:teuthology.orchestra.run.smithi186.stdout:Copr repo for python3-asyncssh owned by ceph 25 kB/s | 3.5 kB 00:00 2024-01-27T23:14:05.958 INFO:teuthology.orchestra.run.smithi073.stdout:Copr repo for python3-asyncssh owned by ceph 22 kB/s | 3.5 kB 00:00 2024-01-27T23:14:07.527 INFO:teuthology.orchestra.run.smithi186.stdout:Extra Packages for Enterprise Linux 10 MB/s | 16 MB 00:01 2024-01-27T23:14:11.269 INFO:teuthology.orchestra.run.smithi186.stdout:lab-extras 490 kB/s | 24 kB 00:00 2024-01-27T23:14:12.038 INFO:teuthology.orchestra.run.smithi186.stdout:Package kernel-4.18.0-513.9.1.el8_9.x86_64 is already installed. 2024-01-27T23:14:12.038 INFO:teuthology.orchestra.run.smithi186.stdout:Package kernel-4.18.0-372.9.1.el8.x86_64 is already installed. 2024-01-27T23:14:12.126 INFO:teuthology.orchestra.run.smithi186.stdout:Dependencies resolved. 2024-01-27T23:14:12.127 INFO:teuthology.orchestra.run.smithi186.stdout:Nothing to do. 2024-01-27T23:14:12.127 INFO:teuthology.orchestra.run.smithi186.stdout:Complete! 2024-01-27T23:14:12.274 DEBUG:teuthology.orchestra.run.smithi186:> echo no | sudo yum reinstall kernel || true 2024-01-27T23:14:12.615 INFO:teuthology.orchestra.run.smithi186.stdout:Updating Subscription Management repositories. 2024-01-27T23:14:12.615 INFO:teuthology.orchestra.run.smithi186.stdout:Unable to read consumer identity 2024-01-27T23:14:12.789 INFO:teuthology.orchestra.run.smithi186.stdout: 2024-01-27T23:14:12.789 INFO:teuthology.orchestra.run.smithi186.stdout:This system is not registered with an entitlement server. You can use subscription-manager to register. 2024-01-27T23:14:12.789 INFO:teuthology.orchestra.run.smithi186.stdout: 2024-01-27T23:14:13.097 INFO:teuthology.orchestra.run.smithi186.stdout:Last metadata expiration check: 0:00:02 ago on Sat 27 Jan 2024 11:14:11 PM UTC. 2024-01-27T23:14:13.168 INFO:teuthology.orchestra.run.smithi186.stdout:Installed package kernel-4.18.0-513.9.1.el8_9.x86_64 (from rhel-8-for-x86_64-baseos-rpms) not available. 2024-01-27T23:14:13.169 INFO:teuthology.orchestra.run.smithi186.stdout:Installed package kernel-4.18.0-372.9.1.el8.x86_64 (from anaconda) not available. 2024-01-27T23:14:13.209 INFO:teuthology.orchestra.run.smithi186.stderr:Error: No packages marked for reinstall. 2024-01-27T23:14:13.257 DEBUG:teuthology.orchestra.run.smithi186:> sudo yum reinstall -y kernel || true 2024-01-27T23:14:13.590 INFO:teuthology.orchestra.run.smithi186.stdout:Updating Subscription Management repositories. 2024-01-27T23:14:13.591 INFO:teuthology.orchestra.run.smithi186.stdout:Unable to read consumer identity 2024-01-27T23:14:13.760 INFO:teuthology.orchestra.run.smithi186.stdout: 2024-01-27T23:14:13.760 INFO:teuthology.orchestra.run.smithi186.stdout:This system is not registered with an entitlement server. You can use subscription-manager to register. 2024-01-27T23:14:13.760 INFO:teuthology.orchestra.run.smithi186.stdout: 2024-01-27T23:14:14.065 INFO:teuthology.orchestra.run.smithi186.stdout:Last metadata expiration check: 0:00:03 ago on Sat 27 Jan 2024 11:14:11 PM UTC. 2024-01-27T23:14:14.128 INFO:teuthology.orchestra.run.smithi186.stdout:Installed package kernel-4.18.0-513.9.1.el8_9.x86_64 (from rhel-8-for-x86_64-baseos-rpms) not available. 2024-01-27T23:14:14.128 INFO:teuthology.orchestra.run.smithi186.stdout:Installed package kernel-4.18.0-372.9.1.el8.x86_64 (from anaconda) not available. 2024-01-27T23:14:14.161 INFO:teuthology.orchestra.run.smithi186.stderr:Error: No packages marked for reinstall. 2024-01-27T23:14:14.208 DEBUG:teuthology.orchestra.run.smithi186:> rpm -q kernel | sort -rV | head -n 1 2024-01-27T23:14:14.364 INFO:teuthology.orchestra.run.smithi186.stdout:kernel-4.18.0-513.9.1.el8_9.x86_64 2024-01-27T23:14:14.367 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 4.18.0-513.9.1.el8_9.x86_64 2024-01-27T23:14:14.367 INFO:teuthology.task.kernel:Newest distro kernel installed and running 2024-01-27T23:14:14.367 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-01-27T23:14:14.368 DEBUG:teuthology.orchestra.run.smithi186:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-01-27T23:14:14.403 INFO:teuthology.orchestra.run.smithi186.stdout:ttyS1 2024-01-27T23:14:14.424 DEBUG:teuthology.parallel:result is None 2024-01-27T23:14:14.886 INFO:teuthology.orchestra.run.smithi073.stdout:Extra Packages for Enterprise Linux 1.8 MB/s | 16 MB 00:08 2024-01-27T23:14:18.442 INFO:teuthology.orchestra.run.smithi073.stdout:lab-extras 385 kB/s | 24 kB 00:00 2024-01-27T23:14:19.153 INFO:teuthology.orchestra.run.smithi073.stdout:Package kernel-4.18.0-513.9.1.el8_9.x86_64 is already installed. 2024-01-27T23:14:19.153 INFO:teuthology.orchestra.run.smithi073.stdout:Package kernel-4.18.0-372.9.1.el8.x86_64 is already installed. 2024-01-27T23:14:19.241 INFO:teuthology.orchestra.run.smithi073.stdout:Dependencies resolved. 2024-01-27T23:14:19.241 INFO:teuthology.orchestra.run.smithi073.stdout:Nothing to do. 2024-01-27T23:14:19.242 INFO:teuthology.orchestra.run.smithi073.stdout:Complete! 2024-01-27T23:14:19.384 DEBUG:teuthology.orchestra.run.smithi073:> echo no | sudo yum reinstall kernel || true 2024-01-27T23:14:19.717 INFO:teuthology.orchestra.run.smithi073.stdout:Updating Subscription Management repositories. 2024-01-27T23:14:19.717 INFO:teuthology.orchestra.run.smithi073.stdout:Unable to read consumer identity 2024-01-27T23:14:19.907 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:14:19.907 INFO:teuthology.orchestra.run.smithi073.stdout:This system is not registered with an entitlement server. You can use subscription-manager to register. 2024-01-27T23:14:19.907 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:14:20.216 INFO:teuthology.orchestra.run.smithi073.stdout:Last metadata expiration check: 0:00:02 ago on Sat 27 Jan 2024 11:14:18 PM UTC. 2024-01-27T23:14:20.292 INFO:teuthology.orchestra.run.smithi073.stdout:Installed package kernel-4.18.0-513.9.1.el8_9.x86_64 (from rhel-8-for-x86_64-baseos-rpms) not available. 2024-01-27T23:14:20.297 INFO:teuthology.orchestra.run.smithi073.stdout:Installed package kernel-4.18.0-372.9.1.el8.x86_64 (from anaconda) not available. 2024-01-27T23:14:20.351 INFO:teuthology.orchestra.run.smithi073.stderr:Error: No packages marked for reinstall. 2024-01-27T23:14:20.396 DEBUG:teuthology.orchestra.run.smithi073:> sudo yum reinstall -y kernel || true 2024-01-27T23:14:20.727 INFO:teuthology.orchestra.run.smithi073.stdout:Updating Subscription Management repositories. 2024-01-27T23:14:20.727 INFO:teuthology.orchestra.run.smithi073.stdout:Unable to read consumer identity 2024-01-27T23:14:21.000 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:14:21.000 INFO:teuthology.orchestra.run.smithi073.stdout:This system is not registered with an entitlement server. You can use subscription-manager to register. 2024-01-27T23:14:21.000 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:14:21.304 INFO:teuthology.orchestra.run.smithi073.stdout:Last metadata expiration check: 0:00:03 ago on Sat 27 Jan 2024 11:14:18 PM UTC. 2024-01-27T23:14:21.367 INFO:teuthology.orchestra.run.smithi073.stdout:Installed package kernel-4.18.0-513.9.1.el8_9.x86_64 (from rhel-8-for-x86_64-baseos-rpms) not available. 2024-01-27T23:14:21.367 INFO:teuthology.orchestra.run.smithi073.stdout:Installed package kernel-4.18.0-372.9.1.el8.x86_64 (from anaconda) not available. 2024-01-27T23:14:21.401 INFO:teuthology.orchestra.run.smithi073.stderr:Error: No packages marked for reinstall. 2024-01-27T23:14:21.448 DEBUG:teuthology.orchestra.run.smithi073:> rpm -q kernel | sort -rV | head -n 1 2024-01-27T23:14:21.602 INFO:teuthology.orchestra.run.smithi073.stdout:kernel-4.18.0-513.9.1.el8_9.x86_64 2024-01-27T23:14:21.602 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 4.18.0-513.9.1.el8_9.x86_64 2024-01-27T23:14:21.602 INFO:teuthology.task.kernel:Newest distro kernel installed and running 2024-01-27T23:14:21.603 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-01-27T23:14:21.603 DEBUG:teuthology.orchestra.run.smithi073:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-01-27T23:14:21.634 INFO:teuthology.orchestra.run.smithi073.stdout:ttyS1 2024-01-27T23:14:21.650 DEBUG:teuthology.parallel:result is None 2024-01-27T23:14:21.650 INFO:teuthology.run_tasks:Running task internal.base... 2024-01-27T23:14:21.656 INFO:teuthology.task.internal:Creating test directory... 2024-01-27T23:14:21.657 DEBUG:teuthology.orchestra.run.smithi073:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-01-27T23:14:21.692 DEBUG:teuthology.orchestra.run.smithi186:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-01-27T23:14:21.713 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-01-27T23:14:21.720 INFO:teuthology.run_tasks:Running task internal.archive... 2024-01-27T23:14:21.725 INFO:teuthology.task.internal:Creating archive directory... 2024-01-27T23:14:21.725 DEBUG:teuthology.orchestra.run.smithi073:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-01-27T23:14:21.749 DEBUG:teuthology.orchestra.run.smithi186:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-01-27T23:14:21.788 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-01-27T23:14:21.794 INFO:teuthology.task.internal:Enabling coredump saving... 2024-01-27T23:14:21.795 DEBUG:teuthology.orchestra.run.smithi073:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-01-27T23:14:21.810 DEBUG:teuthology.orchestra.run.smithi186:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-01-27T23:14:21.844 INFO:teuthology.orchestra.run.smithi073.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-01-27T23:14:21.854 INFO:teuthology.orchestra.run.smithi073.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-01-27T23:14:21.871 INFO:teuthology.orchestra.run.smithi186.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-01-27T23:14:21.883 INFO:teuthology.orchestra.run.smithi186.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-01-27T23:14:21.885 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-01-27T23:14:21.892 INFO:teuthology.task.internal:Configuring sudo... 2024-01-27T23:14:21.892 DEBUG:teuthology.orchestra.run.smithi073:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-01-27T23:14:21.898 DEBUG:teuthology.orchestra.run.smithi186:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-01-27T23:14:21.927 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-01-27T23:14:21.935 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-01-27T23:14:21.935 DEBUG:teuthology.orchestra.run.smithi073:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-01-27T23:14:21.966 DEBUG:teuthology.orchestra.run.smithi186:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-01-27T23:14:21.985 DEBUG:teuthology.orchestra.run.smithi073:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-01-27T23:14:22.060 DEBUG:teuthology.orchestra.run.smithi073:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-01-27T23:14:22.121 DEBUG:teuthology.orchestra.run.smithi073:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-01-27T23:14:22.201 DEBUG:teuthology.orchestra.run.smithi073:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-01-27T23:14:22.247 DEBUG:teuthology.orchestra.run.smithi073:> set -ex 2024-01-27T23:14:22.248 DEBUG:teuthology.orchestra.run.smithi073:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-01-27T23:14:22.315 DEBUG:teuthology.orchestra.run.smithi186:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-01-27T23:14:22.364 DEBUG:teuthology.orchestra.run.smithi186:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-01-27T23:14:22.418 DEBUG:teuthology.orchestra.run.smithi186:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-01-27T23:14:22.506 DEBUG:teuthology.orchestra.run.smithi186:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-01-27T23:14:22.550 DEBUG:teuthology.orchestra.run.smithi186:> set -ex 2024-01-27T23:14:22.550 DEBUG:teuthology.orchestra.run.smithi186:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-01-27T23:14:22.619 DEBUG:teuthology.orchestra.run.smithi073:> sudo service rsyslog restart 2024-01-27T23:14:22.622 DEBUG:teuthology.orchestra.run.smithi186:> sudo service rsyslog restart 2024-01-27T23:14:22.664 INFO:teuthology.orchestra.run.smithi073.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-01-27T23:14:22.717 INFO:teuthology.orchestra.run.smithi186.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-01-27T23:14:23.066 INFO:teuthology.run_tasks:Running task internal.timer... 2024-01-27T23:14:23.074 INFO:teuthology.task.internal:Starting timer... 2024-01-27T23:14:23.074 INFO:teuthology.run_tasks:Running task pcp... 2024-01-27T23:14:23.083 INFO:teuthology.run_tasks:Running task selinux... 2024-01-27T23:14:23.091 DEBUG:teuthology.task:Applying overrides for task selinux: {'whitelist': ['scontext=system_u:system_r:logrotate_t:s0']} 2024-01-27T23:14:23.092 DEBUG:teuthology.orchestra.run.smithi073:> sudo service auditd rotate 2024-01-27T23:14:23.153 INFO:teuthology.orchestra.run.smithi073.stdout:Rotating logs: 2024-01-27T23:14:23.155 DEBUG:teuthology.orchestra.run.smithi186:> sudo service auditd rotate 2024-01-27T23:14:23.216 INFO:teuthology.orchestra.run.smithi186.stdout:Rotating logs: 2024-01-27T23:14:23.218 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-01-27T23:14:23.218 DEBUG:teuthology.orchestra.run.smithi073:> /usr/sbin/getenforce 2024-01-27T23:14:23.249 INFO:teuthology.orchestra.run.smithi073.stdout:Permissive 2024-01-27T23:14:23.249 DEBUG:teuthology.orchestra.run.smithi186:> /usr/sbin/getenforce 2024-01-27T23:14:23.270 INFO:teuthology.orchestra.run.smithi186.stdout:Permissive 2024-01-27T23:14:23.270 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@smithi073.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi186.front.sepia.ceph.com': 'permissive'} 2024-01-27T23:14:23.270 DEBUG:teuthology.orchestra.run.smithi073:> 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 2024-01-27T23:14:23.318 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-27T23:14:23.318 DEBUG:teuthology.orchestra.run.smithi186:> 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 2024-01-27T23:14:23.348 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-27T23:14:23.348 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-01-27T23:14:23.349 DEBUG:teuthology.orchestra.run.smithi073:> sudo /usr/sbin/setenforce permissive 2024-01-27T23:14:23.386 DEBUG:teuthology.orchestra.run.smithi186:> sudo /usr/sbin/setenforce permissive 2024-01-27T23:14:23.418 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-01-27T23:14:23.427 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-01-27T23:14:23.443 INFO:teuthology.task.ansible:Playbook: [{'import_playbook': 'ansible_managed.yml'}, {'import_playbook': 'teuthology.yml'}, {'hosts': 'testnodes', 'tasks': [{'set_fact': {'ran_from_cephlab_playbook': True}}]}, {'import_playbook': 'testnodes.yml'}, {'import_playbook': 'container-host.yml'}, {'import_playbook': 'cobbler.yml'}, {'import_playbook': 'paddles.yml'}, {'import_playbook': 'pulpito.yml'}, {'hosts': 'testnodes', 'become': True, 'tasks': [{'name': 'Touch /ceph-qa-ready', 'file': {'path': '/ceph-qa-ready', 'state': 'touch'}, 'when': 'ran_from_cephlab_playbook|bool'}]}] 2024-01-27T23:14:23.444 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi073.front.sepia.ceph.com,smithi186.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-01-27T23:22:40.126 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi073.front.sepia.ceph.com'), Remote(name='ubuntu@smithi186.front.sepia.ceph.com')] 2024-01-27T23:22:40.128 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi073.front.sepia.ceph.com' 2024-01-27T23:22:40.129 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi073.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-01-27T23:22:40.201 DEBUG:teuthology.orchestra.run.smithi073:> true 2024-01-27T23:22:40.272 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi073.front.sepia.ceph.com' 2024-01-27T23:22:40.272 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi186.front.sepia.ceph.com' 2024-01-27T23:22:40.273 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi186.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-01-27T23:22:40.344 DEBUG:teuthology.orchestra.run.smithi186:> true 2024-01-27T23:22:40.413 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi186.front.sepia.ceph.com' 2024-01-27T23:22:40.413 INFO:teuthology.run_tasks:Running task clock... 2024-01-27T23:22:40.423 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-01-27T23:22:40.423 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-01-27T23:22:40.423 DEBUG:teuthology.orchestra.run.smithi073:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-01-27T23:22:40.425 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-01-27T23:22:40.426 DEBUG:teuthology.orchestra.run.smithi186:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-01-27T23:22:40.454 INFO:teuthology.orchestra.run.smithi073.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-01-27T23:22:40.469 INFO:teuthology.orchestra.run.smithi073.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-01-27T23:22:40.484 INFO:teuthology.orchestra.run.smithi186.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-01-27T23:22:40.499 INFO:teuthology.orchestra.run.smithi186.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-01-27T23:22:40.538 INFO:teuthology.orchestra.run.smithi073.stderr:sudo: ntpd: command not found 2024-01-27T23:22:40.549 INFO:teuthology.orchestra.run.smithi073.stdout:506 Cannot talk to daemon 2024-01-27T23:22:40.559 INFO:teuthology.orchestra.run.smithi186.stderr:sudo: ntpd: command not found 2024-01-27T23:22:40.564 INFO:teuthology.orchestra.run.smithi073.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-01-27T23:22:40.571 INFO:teuthology.orchestra.run.smithi186.stdout:506 Cannot talk to daemon 2024-01-27T23:22:40.578 INFO:teuthology.orchestra.run.smithi073.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-01-27T23:22:40.586 INFO:teuthology.orchestra.run.smithi186.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-01-27T23:22:40.601 INFO:teuthology.orchestra.run.smithi186.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-01-27T23:22:40.670 INFO:teuthology.orchestra.run.smithi073.stderr:bash: ntpq: command not found 2024-01-27T23:22:40.673 INFO:teuthology.orchestra.run.smithi073.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-01-27T23:22:40.674 INFO:teuthology.orchestra.run.smithi073.stdout:=============================================================================== 2024-01-27T23:22:40.674 INFO:teuthology.orchestra.run.smithi073.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-01-27T23:22:40.674 INFO:teuthology.orchestra.run.smithi073.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-01-27T23:22:40.674 INFO:teuthology.orchestra.run.smithi073.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-01-27T23:22:40.674 INFO:teuthology.orchestra.run.smithi073.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-01-27T23:22:40.682 INFO:teuthology.orchestra.run.smithi186.stderr:bash: ntpq: command not found 2024-01-27T23:22:40.685 INFO:teuthology.orchestra.run.smithi186.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-01-27T23:22:40.685 INFO:teuthology.orchestra.run.smithi186.stdout:=============================================================================== 2024-01-27T23:22:40.686 INFO:teuthology.orchestra.run.smithi186.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-01-27T23:22:40.686 INFO:teuthology.orchestra.run.smithi186.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-01-27T23:22:40.686 INFO:teuthology.orchestra.run.smithi186.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-01-27T23:22:40.686 INFO:teuthology.orchestra.run.smithi186.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-01-27T23:22:40.687 INFO:teuthology.run_tasks:Running task pexec... 2024-01-27T23:22:40.696 INFO:teuthology.task.pexec:Executing custom commands... 2024-01-27T23:22:40.696 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi073.front.sepia.ceph.com 2024-01-27T23:22:40.696 DEBUG:teuthology.orchestra.run.smithi073:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-01-27T23:22:40.697 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi186.front.sepia.ceph.com 2024-01-27T23:22:40.697 DEBUG:teuthology.orchestra.run.smithi186:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-01-27T23:22:41.090 INFO:teuthology.orchestra.run.smithi073.stdout:Updating Subscription Management repositories. 2024-01-27T23:22:41.106 INFO:teuthology.orchestra.run.smithi186.stdout:Updating Subscription Management repositories. 2024-01-27T23:22:41.829 INFO:teuthology.orchestra.run.smithi186.stdout:Red Hat Enterprise Linux 8 for x86_64 - AppStre 170 kB/s | 4.5 kB 00:00 2024-01-27T23:22:41.925 INFO:teuthology.orchestra.run.smithi073.stdout:Red Hat Enterprise Linux 8 for x86_64 - BaseOS 159 kB/s | 4.1 kB 00:00 2024-01-27T23:22:42.160 INFO:teuthology.orchestra.run.smithi073.stdout:Red Hat Enterprise Linux 8 for x86_64 - AppStre 163 kB/s | 4.5 kB 00:00 2024-01-27T23:22:42.357 INFO:teuthology.orchestra.run.smithi186.stdout:Red Hat Enterprise Linux 8 for x86_64 - BaseOS 141 kB/s | 4.1 kB 00:00 2024-01-27T23:22:45.221 INFO:teuthology.orchestra.run.smithi073.stdout:Dependencies resolved. 2024-01-27T23:22:45.222 INFO:teuthology.orchestra.run.smithi073.stdout:================================================================================ 2024-01-27T23:22:45.222 INFO:teuthology.orchestra.run.smithi073.stdout: Package Architecture Version Repository Size 2024-01-27T23:22:45.222 INFO:teuthology.orchestra.run.smithi073.stdout:================================================================================ 2024-01-27T23:22:45.222 INFO:teuthology.orchestra.run.smithi073.stdout:Resetting modules: 2024-01-27T23:22:45.222 INFO:teuthology.orchestra.run.smithi073.stdout: container-tools 2024-01-27T23:22:45.222 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:22:45.223 INFO:teuthology.orchestra.run.smithi073.stdout:Transaction Summary 2024-01-27T23:22:45.223 INFO:teuthology.orchestra.run.smithi073.stdout:================================================================================ 2024-01-27T23:22:45.223 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:22:45.374 INFO:teuthology.orchestra.run.smithi186.stdout:Dependencies resolved. 2024-01-27T23:22:45.375 INFO:teuthology.orchestra.run.smithi186.stdout:================================================================================ 2024-01-27T23:22:45.375 INFO:teuthology.orchestra.run.smithi186.stdout: Package Architecture Version Repository Size 2024-01-27T23:22:45.375 INFO:teuthology.orchestra.run.smithi186.stdout:================================================================================ 2024-01-27T23:22:45.376 INFO:teuthology.orchestra.run.smithi186.stdout:Resetting modules: 2024-01-27T23:22:45.376 INFO:teuthology.orchestra.run.smithi186.stdout: container-tools 2024-01-27T23:22:45.376 INFO:teuthology.orchestra.run.smithi186.stdout: 2024-01-27T23:22:45.376 INFO:teuthology.orchestra.run.smithi186.stdout:Transaction Summary 2024-01-27T23:22:45.376 INFO:teuthology.orchestra.run.smithi186.stdout:================================================================================ 2024-01-27T23:22:45.376 INFO:teuthology.orchestra.run.smithi186.stdout: 2024-01-27T23:22:49.961 INFO:teuthology.orchestra.run.smithi073.stdout:Complete! 2024-01-27T23:22:50.403 INFO:teuthology.orchestra.run.smithi186.stdout:Complete! 2024-01-27T23:22:50.429 INFO:teuthology.orchestra.run.smithi073.stdout:Updating Subscription Management repositories. 2024-01-27T23:22:50.869 INFO:teuthology.orchestra.run.smithi186.stdout:Updating Subscription Management repositories. 2024-01-27T23:22:51.237 INFO:teuthology.orchestra.run.smithi073.stdout:Red Hat Enterprise Linux 8 for x86_64 - BaseOS 111 kB/s | 4.1 kB 00:00 2024-01-27T23:22:51.479 INFO:teuthology.orchestra.run.smithi073.stdout:Red Hat Enterprise Linux 8 for x86_64 - AppStre 122 kB/s | 4.5 kB 00:00 2024-01-27T23:22:51.649 INFO:teuthology.orchestra.run.smithi186.stdout:Red Hat Enterprise Linux 8 for x86_64 - AppStre 122 kB/s | 4.5 kB 00:00 2024-01-27T23:22:52.183 INFO:teuthology.orchestra.run.smithi186.stdout:Red Hat Enterprise Linux 8 for x86_64 - BaseOS 108 kB/s | 4.1 kB 00:00 2024-01-27T23:22:54.272 INFO:teuthology.orchestra.run.smithi073.stdout:Dependencies resolved. 2024-01-27T23:22:54.424 INFO:teuthology.orchestra.run.smithi073.stdout:========================================================================================================== 2024-01-27T23:22:54.424 INFO:teuthology.orchestra.run.smithi073.stdout: Package Arch Version Repository Size 2024-01-27T23:22:54.424 INFO:teuthology.orchestra.run.smithi073.stdout:========================================================================================================== 2024-01-27T23:22:54.424 INFO:teuthology.orchestra.run.smithi073.stdout:Installing group/module packages: 2024-01-27T23:22:54.424 INFO:teuthology.orchestra.run.smithi073.stdout: aardvark-dns x86_64 2:1.7.0-1.module+el8.9.0+20326+387084d0 rhel-8-for-x86_64-appstream-rpms 1.0 M 2024-01-27T23:22:54.424 INFO:teuthology.orchestra.run.smithi073.stdout: buildah x86_64 1:1.31.3-1.module+el8.9.0+20326+387084d0 rhel-8-for-x86_64-appstream-rpms 8.8 M 2024-01-27T23:22:54.424 INFO:teuthology.orchestra.run.smithi073.stdout: cockpit-podman noarch 75-1.module+el8.9.0+20326+387084d0 rhel-8-for-x86_64-appstream-rpms 739 k 2024-01-27T23:22:54.424 INFO:teuthology.orchestra.run.smithi073.stdout: crun x86_64 1.8.7-1.module+el8.9.0+20326+387084d0 rhel-8-for-x86_64-appstream-rpms 239 k 2024-01-27T23:22:54.424 INFO:teuthology.orchestra.run.smithi073.stdout: netavark x86_64 2:1.7.0-1.module+el8.9.0+20326+387084d0 rhel-8-for-x86_64-appstream-rpms 3.7 M 2024-01-27T23:22:54.425 INFO:teuthology.orchestra.run.smithi073.stdout: python3-podman noarch 4.6.0-1.module+el8.9.0+20326+387084d0 rhel-8-for-x86_64-appstream-rpms 153 k 2024-01-27T23:22:54.425 INFO:teuthology.orchestra.run.smithi073.stdout: skopeo x86_64 2:1.13.3-1.module+el8.9.0+20326+387084d0 rhel-8-for-x86_64-appstream-rpms 8.1 M 2024-01-27T23:22:54.425 INFO:teuthology.orchestra.run.smithi073.stdout: toolbox x86_64 0.0.99.4-5.module+el8.9.0+20326+387084d0 rhel-8-for-x86_64-appstream-rpms 2.5 M 2024-01-27T23:22:54.425 INFO:teuthology.orchestra.run.smithi073.stdout: udica noarch 0.2.6-20.module+el8.9.0+20326+387084d0 rhel-8-for-x86_64-appstream-rpms 49 k 2024-01-27T23:22:54.425 INFO:teuthology.orchestra.run.smithi073.stdout:Installing dependencies: 2024-01-27T23:22:54.425 INFO:teuthology.orchestra.run.smithi073.stdout: python3-pytoml noarch 0.1.14-5.git7dea353.el8 rhel-8-for-x86_64-appstream-rpms 25 k 2024-01-27T23:22:54.425 INFO:teuthology.orchestra.run.smithi073.stdout: python3-pyxdg noarch 0.25-16.el8 rhel-8-for-x86_64-appstream-rpms 94 k 2024-01-27T23:22:54.425 INFO:teuthology.orchestra.run.smithi073.stdout: yajl x86_64 2.1.0-12.el8 rhel-8-for-x86_64-appstream-rpms 41 k 2024-01-27T23:22:54.425 INFO:teuthology.orchestra.run.smithi073.stdout:Installing weak dependencies: 2024-01-27T23:22:54.425 INFO:teuthology.orchestra.run.smithi073.stdout: criu-libs x86_64 3.18-4.module+el8.9.0+20326+387084d0 rhel-8-for-x86_64-appstream-rpms 39 k 2024-01-27T23:22:54.425 INFO:teuthology.orchestra.run.smithi073.stdout:Installing module profiles: 2024-01-27T23:22:54.425 INFO:teuthology.orchestra.run.smithi073.stdout: container-tools/common 2024-01-27T23:22:54.425 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:22:54.425 INFO:teuthology.orchestra.run.smithi073.stdout:Enabling module streams: 2024-01-27T23:22:54.425 INFO:teuthology.orchestra.run.smithi073.stdout: container-tools rhel8 2024-01-27T23:22:54.425 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:22:54.426 INFO:teuthology.orchestra.run.smithi073.stdout:Transaction Summary 2024-01-27T23:22:54.426 INFO:teuthology.orchestra.run.smithi073.stdout:========================================================================================================== 2024-01-27T23:22:54.426 INFO:teuthology.orchestra.run.smithi073.stdout:Install 13 Packages 2024-01-27T23:22:54.426 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:22:54.426 INFO:teuthology.orchestra.run.smithi073.stdout:Total download size: 26 M 2024-01-27T23:22:54.426 INFO:teuthology.orchestra.run.smithi073.stdout:Installed size: 87 M 2024-01-27T23:22:54.426 INFO:teuthology.orchestra.run.smithi073.stdout:Downloading Packages: 2024-01-27T23:22:54.509 INFO:teuthology.orchestra.run.smithi073.stdout:(1/13): yajl-2.1.0-12.el8.x86_64.rpm 500 kB/s | 41 kB 00:00 2024-01-27T23:22:54.525 INFO:teuthology.orchestra.run.smithi073.stdout:(2/13): python3-pytoml-0.1.14-5.git7dea353.el8. 250 kB/s | 25 kB 00:00 2024-01-27T23:22:54.551 INFO:teuthology.orchestra.run.smithi073.stdout:(3/13): python3-pyxdg-0.25-16.el8.noarch.rpm 756 kB/s | 94 kB 00:00 2024-01-27T23:22:54.592 INFO:teuthology.orchestra.run.smithi073.stdout:(4/13): aardvark-dns-1.7.0-1.module+el8.9.0+203 12 MB/s | 1.0 MB 00:00 2024-01-27T23:22:54.626 INFO:teuthology.orchestra.run.smithi073.stdout:(5/13): cockpit-podman-75-1.module+el8.9.0+2032 9.6 MB/s | 739 kB 00:00 2024-01-27T23:22:54.651 INFO:teuthology.orchestra.run.smithi073.stdout:(6/13): criu-libs-3.18-4.module+el8.9.0+20326+3 670 kB/s | 39 kB 00:00 2024-01-27T23:22:54.685 INFO:teuthology.orchestra.run.smithi073.stdout:(7/13): crun-1.8.7-1.module+el8.9.0+20326+38708 4.0 MB/s | 239 kB 00:00 2024-01-27T23:22:54.752 INFO:teuthology.orchestra.run.smithi073.stdout:(8/13): python3-podman-4.6.0-1.module+el8.9.0+2 2.3 MB/s | 153 kB 00:00 2024-01-27T23:22:54.819 INFO:teuthology.orchestra.run.smithi073.stdout:(9/13): netavark-1.7.0-1.module+el8.9.0+20326+3 22 MB/s | 3.7 MB 00:00 2024-01-27T23:22:54.939 INFO:teuthology.orchestra.run.smithi186.stdout:Dependencies resolved. 2024-01-27T23:22:54.944 INFO:teuthology.orchestra.run.smithi073.stdout:(10/13): buildah-1.31.3-1.module+el8.9.0+20326+ 21 MB/s | 8.8 MB 00:00 2024-01-27T23:22:55.020 INFO:teuthology.orchestra.run.smithi073.stdout:(11/13): toolbox-0.0.99.4-5.module+el8.9.0+2032 13 MB/s | 2.5 MB 00:00 2024-01-27T23:22:55.045 INFO:teuthology.orchestra.run.smithi073.stdout:(12/13): udica-0.2.6-20.module+el8.9.0+20326+38 494 kB/s | 49 kB 00:00 2024-01-27T23:22:55.091 INFO:teuthology.orchestra.run.smithi186.stdout:========================================================================================================== 2024-01-27T23:22:55.091 INFO:teuthology.orchestra.run.smithi186.stdout: Package Arch Version Repository Size 2024-01-27T23:22:55.091 INFO:teuthology.orchestra.run.smithi186.stdout:========================================================================================================== 2024-01-27T23:22:55.091 INFO:teuthology.orchestra.run.smithi186.stdout:Installing group/module packages: 2024-01-27T23:22:55.091 INFO:teuthology.orchestra.run.smithi186.stdout: aardvark-dns x86_64 2:1.7.0-1.module+el8.9.0+20326+387084d0 rhel-8-for-x86_64-appstream-rpms 1.0 M 2024-01-27T23:22:55.091 INFO:teuthology.orchestra.run.smithi186.stdout: buildah x86_64 1:1.31.3-1.module+el8.9.0+20326+387084d0 rhel-8-for-x86_64-appstream-rpms 8.8 M 2024-01-27T23:22:55.091 INFO:teuthology.orchestra.run.smithi186.stdout: cockpit-podman noarch 75-1.module+el8.9.0+20326+387084d0 rhel-8-for-x86_64-appstream-rpms 739 k 2024-01-27T23:22:55.091 INFO:teuthology.orchestra.run.smithi186.stdout: crun x86_64 1.8.7-1.module+el8.9.0+20326+387084d0 rhel-8-for-x86_64-appstream-rpms 239 k 2024-01-27T23:22:55.091 INFO:teuthology.orchestra.run.smithi186.stdout: netavark x86_64 2:1.7.0-1.module+el8.9.0+20326+387084d0 rhel-8-for-x86_64-appstream-rpms 3.7 M 2024-01-27T23:22:55.091 INFO:teuthology.orchestra.run.smithi186.stdout: python3-podman noarch 4.6.0-1.module+el8.9.0+20326+387084d0 rhel-8-for-x86_64-appstream-rpms 153 k 2024-01-27T23:22:55.092 INFO:teuthology.orchestra.run.smithi186.stdout: skopeo x86_64 2:1.13.3-1.module+el8.9.0+20326+387084d0 rhel-8-for-x86_64-appstream-rpms 8.1 M 2024-01-27T23:22:55.092 INFO:teuthology.orchestra.run.smithi186.stdout: toolbox x86_64 0.0.99.4-5.module+el8.9.0+20326+387084d0 rhel-8-for-x86_64-appstream-rpms 2.5 M 2024-01-27T23:22:55.092 INFO:teuthology.orchestra.run.smithi186.stdout: udica noarch 0.2.6-20.module+el8.9.0+20326+387084d0 rhel-8-for-x86_64-appstream-rpms 49 k 2024-01-27T23:22:55.092 INFO:teuthology.orchestra.run.smithi186.stdout:Installing dependencies: 2024-01-27T23:22:55.092 INFO:teuthology.orchestra.run.smithi186.stdout: python3-pytoml noarch 0.1.14-5.git7dea353.el8 rhel-8-for-x86_64-appstream-rpms 25 k 2024-01-27T23:22:55.092 INFO:teuthology.orchestra.run.smithi186.stdout: python3-pyxdg noarch 0.25-16.el8 rhel-8-for-x86_64-appstream-rpms 94 k 2024-01-27T23:22:55.092 INFO:teuthology.orchestra.run.smithi186.stdout: yajl x86_64 2.1.0-12.el8 rhel-8-for-x86_64-appstream-rpms 41 k 2024-01-27T23:22:55.092 INFO:teuthology.orchestra.run.smithi186.stdout:Installing weak dependencies: 2024-01-27T23:22:55.092 INFO:teuthology.orchestra.run.smithi186.stdout: criu-libs x86_64 3.18-4.module+el8.9.0+20326+387084d0 rhel-8-for-x86_64-appstream-rpms 39 k 2024-01-27T23:22:55.092 INFO:teuthology.orchestra.run.smithi186.stdout:Installing module profiles: 2024-01-27T23:22:55.092 INFO:teuthology.orchestra.run.smithi186.stdout: container-tools/common 2024-01-27T23:22:55.092 INFO:teuthology.orchestra.run.smithi186.stdout: 2024-01-27T23:22:55.092 INFO:teuthology.orchestra.run.smithi186.stdout:Enabling module streams: 2024-01-27T23:22:55.093 INFO:teuthology.orchestra.run.smithi186.stdout: container-tools rhel8 2024-01-27T23:22:55.093 INFO:teuthology.orchestra.run.smithi186.stdout: 2024-01-27T23:22:55.093 INFO:teuthology.orchestra.run.smithi186.stdout:Transaction Summary 2024-01-27T23:22:55.093 INFO:teuthology.orchestra.run.smithi186.stdout:========================================================================================================== 2024-01-27T23:22:55.093 INFO:teuthology.orchestra.run.smithi186.stdout:Install 13 Packages 2024-01-27T23:22:55.093 INFO:teuthology.orchestra.run.smithi186.stdout: 2024-01-27T23:22:55.093 INFO:teuthology.orchestra.run.smithi186.stdout:Total download size: 26 M 2024-01-27T23:22:55.093 INFO:teuthology.orchestra.run.smithi186.stdout:Installed size: 87 M 2024-01-27T23:22:55.094 INFO:teuthology.orchestra.run.smithi186.stdout:Downloading Packages: 2024-01-27T23:22:55.178 INFO:teuthology.orchestra.run.smithi073.stdout:(13/13): skopeo-1.13.3-1.module+el8.9.0+20326+3 19 MB/s | 8.1 MB 00:00 2024-01-27T23:22:55.179 INFO:teuthology.orchestra.run.smithi186.stdout:(1/13): python3-pytoml-0.1.14-5.git7dea353.el8. 293 kB/s | 25 kB 00:00 2024-01-27T23:22:55.179 INFO:teuthology.orchestra.run.smithi073.stdout:-------------------------------------------------------------------------------- 2024-01-27T23:22:55.179 INFO:teuthology.orchestra.run.smithi073.stdout:Total 34 MB/s | 26 MB 00:00 2024-01-27T23:22:55.195 INFO:teuthology.orchestra.run.smithi186.stdout:(2/13): yajl-2.1.0-12.el8.x86_64.rpm 405 kB/s | 41 kB 00:00 2024-01-27T23:22:55.220 INFO:teuthology.orchestra.run.smithi186.stdout:(3/13): python3-pyxdg-0.25-16.el8.noarch.rpm 742 kB/s | 94 kB 00:00 2024-01-27T23:22:55.262 INFO:teuthology.orchestra.run.smithi186.stdout:(4/13): aardvark-dns-1.7.0-1.module+el8.9.0+203 12 MB/s | 1.0 MB 00:00 2024-01-27T23:22:55.324 INFO:teuthology.orchestra.run.smithi186.stdout:(5/13): cockpit-podman-75-1.module+el8.9.0+2032 7.0 MB/s | 739 kB 00:00 2024-01-27T23:22:55.346 INFO:teuthology.orchestra.run.smithi186.stdout:(6/13): criu-libs-3.18-4.module+el8.9.0+20326+3 470 kB/s | 39 kB 00:00 2024-01-27T23:22:55.371 INFO:teuthology.orchestra.run.smithi186.stdout:(7/13): crun-1.8.7-1.module+el8.9.0+20326+38708 4.9 MB/s | 239 kB 00:00 2024-01-27T23:22:55.422 INFO:teuthology.orchestra.run.smithi186.stdout:(8/13): python3-podman-4.6.0-1.module+el8.9.0+2 3.0 MB/s | 153 kB 00:00 2024-01-27T23:22:55.462 INFO:teuthology.orchestra.run.smithi073.stdout:Running transaction check 2024-01-27T23:22:55.483 INFO:teuthology.orchestra.run.smithi073.stdout:Transaction check succeeded. 2024-01-27T23:22:55.483 INFO:teuthology.orchestra.run.smithi073.stdout:Running transaction test 2024-01-27T23:22:55.505 INFO:teuthology.orchestra.run.smithi186.stdout:(9/13): netavark-1.7.0-1.module+el8.9.0+20326+3 23 MB/s | 3.7 MB 00:00 2024-01-27T23:22:55.672 INFO:teuthology.orchestra.run.smithi186.stdout:(10/13): buildah-1.31.3-1.module+el8.9.0+20326+ 18 MB/s | 8.8 MB 00:00 2024-01-27T23:22:55.711 INFO:teuthology.orchestra.run.smithi073.stdout:Transaction test succeeded. 2024-01-27T23:22:55.720 INFO:teuthology.orchestra.run.smithi073.stdout:Running transaction 2024-01-27T23:22:55.731 INFO:teuthology.orchestra.run.smithi186.stdout:(11/13): toolbox-0.0.99.4-5.module+el8.9.0+2032 11 MB/s | 2.5 MB 00:00 2024-01-27T23:22:55.748 INFO:teuthology.orchestra.run.smithi186.stdout:(12/13): udica-0.2.6-20.module+el8.9.0+20326+38 659 kB/s | 49 kB 00:00 2024-01-27T23:22:55.890 INFO:teuthology.orchestra.run.smithi186.stdout:(13/13): skopeo-1.13.3-1.module+el8.9.0+20326+3 17 MB/s | 8.1 MB 00:00 2024-01-27T23:22:55.890 INFO:teuthology.orchestra.run.smithi186.stdout:-------------------------------------------------------------------------------- 2024-01-27T23:22:55.891 INFO:teuthology.orchestra.run.smithi186.stdout:Total 32 MB/s | 26 MB 00:00 2024-01-27T23:22:56.176 INFO:teuthology.orchestra.run.smithi186.stdout:Running transaction check 2024-01-27T23:22:56.197 INFO:teuthology.orchestra.run.smithi186.stdout:Transaction check succeeded. 2024-01-27T23:22:56.197 INFO:teuthology.orchestra.run.smithi186.stdout:Running transaction test 2024-01-27T23:22:56.327 INFO:teuthology.orchestra.run.smithi073.stdout: Preparing : 1/1 2024-01-27T23:22:56.427 INFO:teuthology.orchestra.run.smithi186.stdout:Transaction test succeeded. 2024-01-27T23:22:56.436 INFO:teuthology.orchestra.run.smithi186.stdout:Running transaction 2024-01-27T23:22:56.565 INFO:teuthology.orchestra.run.smithi073.stdout: Installing : criu-libs-3.18-4.module+el8.9.0+20326+387084d0.x86 1/13 2024-01-27T23:22:57.055 INFO:teuthology.orchestra.run.smithi186.stdout: Preparing : 1/1 2024-01-27T23:22:57.066 INFO:teuthology.orchestra.run.smithi073.stdout: Installing : aardvark-dns-2:1.7.0-1.module+el8.9.0+20326+387084 2/13 2024-01-27T23:22:57.286 INFO:teuthology.orchestra.run.smithi073.stdout: Installing : netavark-2:1.7.0-1.module+el8.9.0+20326+387084d0.x 3/13 2024-01-27T23:22:57.291 INFO:teuthology.orchestra.run.smithi186.stdout: Installing : criu-libs-3.18-4.module+el8.9.0+20326+387084d0.x86 1/13 2024-01-27T23:22:57.476 INFO:teuthology.orchestra.run.smithi073.stdout: Installing : yajl-2.1.0-12.el8.x86_64 4/13 2024-01-27T23:22:57.654 INFO:teuthology.orchestra.run.smithi073.stdout: Installing : python3-pyxdg-0.25-16.el8.noarch 5/13 2024-01-27T23:22:57.760 INFO:teuthology.orchestra.run.smithi186.stdout: Installing : aardvark-dns-2:1.7.0-1.module+el8.9.0+20326+387084 2/13 2024-01-27T23:22:57.888 INFO:teuthology.orchestra.run.smithi073.stdout: Installing : python3-pytoml-0.1.14-5.git7dea353.el8.noarch 6/13 2024-01-27T23:22:57.921 INFO:teuthology.orchestra.run.smithi186.stdout: Installing : netavark-2:1.7.0-1.module+el8.9.0+20326+387084d0.x 3/13 2024-01-27T23:22:58.132 INFO:teuthology.orchestra.run.smithi073.stdout: Installing : python3-podman-4.6.0-1.module+el8.9.0+20326+387084 7/13 2024-01-27T23:22:58.143 INFO:teuthology.orchestra.run.smithi186.stdout: Installing : yajl-2.1.0-12.el8.x86_64 4/13 2024-01-27T23:22:58.338 INFO:teuthology.orchestra.run.smithi186.stdout: Installing : python3-pyxdg-0.25-16.el8.noarch 5/13 2024-01-27T23:22:58.531 INFO:teuthology.orchestra.run.smithi186.stdout: Installing : python3-pytoml-0.1.14-5.git7dea353.el8.noarch 6/13 2024-01-27T23:22:58.883 INFO:teuthology.orchestra.run.smithi186.stdout: Installing : python3-podman-4.6.0-1.module+el8.9.0+20326+387084 7/13 2024-01-27T23:22:59.021 INFO:teuthology.orchestra.run.smithi073.stdout: Installing : crun-1.8.7-1.module+el8.9.0+20326+387084d0.x86_64 8/13 2024-01-27T23:22:59.241 INFO:teuthology.orchestra.run.smithi073.stdout: Installing : buildah-1:1.31.3-1.module+el8.9.0+20326+387084d0.x 9/13 2024-01-27T23:22:59.607 INFO:teuthology.orchestra.run.smithi073.stdout: Installing : udica-0.2.6-20.module+el8.9.0+20326+387084d0.noarc 10/13 2024-01-27T23:22:59.758 INFO:teuthology.orchestra.run.smithi186.stdout: Installing : crun-1.8.7-1.module+el8.9.0+20326+387084d0.x86_64 8/13 2024-01-27T23:23:00.001 INFO:teuthology.orchestra.run.smithi186.stdout: Installing : buildah-1:1.31.3-1.module+el8.9.0+20326+387084d0.x 9/13 2024-01-27T23:23:00.409 INFO:teuthology.orchestra.run.smithi186.stdout: Installing : udica-0.2.6-20.module+el8.9.0+20326+387084d0.noarc 10/13 2024-01-27T23:23:00.514 INFO:teuthology.orchestra.run.smithi073.stdout: Installing : toolbox-0.0.99.4-5.module+el8.9.0+20326+387084d0.x 11/13 2024-01-27T23:23:00.770 INFO:teuthology.orchestra.run.smithi073.stdout: Installing : skopeo-2:1.13.3-1.module+el8.9.0+20326+387084d0.x8 12/13 2024-01-27T23:23:00.936 INFO:teuthology.orchestra.run.smithi073.stdout: Installing : cockpit-podman-75-1.module+el8.9.0+20326+387084d0. 13/13 2024-01-27T23:23:01.333 INFO:teuthology.orchestra.run.smithi186.stdout: Installing : toolbox-0.0.99.4-5.module+el8.9.0+20326+387084d0.x 11/13 2024-01-27T23:23:01.342 INFO:teuthology.orchestra.run.smithi073.stdout: Running scriptlet: cockpit-podman-75-1.module+el8.9.0+20326+387084d0. 13/13 2024-01-27T23:23:01.342 INFO:teuthology.orchestra.run.smithi073.stdout: Verifying : python3-pytoml-0.1.14-5.git7dea353.el8.noarch 1/13 2024-01-27T23:23:01.342 INFO:teuthology.orchestra.run.smithi073.stdout: Verifying : python3-pyxdg-0.25-16.el8.noarch 2/13 2024-01-27T23:23:01.342 INFO:teuthology.orchestra.run.smithi073.stdout: Verifying : yajl-2.1.0-12.el8.x86_64 3/13 2024-01-27T23:23:01.342 INFO:teuthology.orchestra.run.smithi073.stdout: Verifying : aardvark-dns-2:1.7.0-1.module+el8.9.0+20326+387084 4/13 2024-01-27T23:23:01.342 INFO:teuthology.orchestra.run.smithi073.stdout: Verifying : buildah-1:1.31.3-1.module+el8.9.0+20326+387084d0.x 5/13 2024-01-27T23:23:01.342 INFO:teuthology.orchestra.run.smithi073.stdout: Verifying : cockpit-podman-75-1.module+el8.9.0+20326+387084d0. 6/13 2024-01-27T23:23:01.342 INFO:teuthology.orchestra.run.smithi073.stdout: Verifying : criu-libs-3.18-4.module+el8.9.0+20326+387084d0.x86 7/13 2024-01-27T23:23:01.342 INFO:teuthology.orchestra.run.smithi073.stdout: Verifying : crun-1.8.7-1.module+el8.9.0+20326+387084d0.x86_64 8/13 2024-01-27T23:23:01.342 INFO:teuthology.orchestra.run.smithi073.stdout: Verifying : netavark-2:1.7.0-1.module+el8.9.0+20326+387084d0.x 9/13 2024-01-27T23:23:01.342 INFO:teuthology.orchestra.run.smithi073.stdout: Verifying : python3-podman-4.6.0-1.module+el8.9.0+20326+387084 10/13 2024-01-27T23:23:01.342 INFO:teuthology.orchestra.run.smithi073.stdout: Verifying : skopeo-2:1.13.3-1.module+el8.9.0+20326+387084d0.x8 11/13 2024-01-27T23:23:01.342 INFO:teuthology.orchestra.run.smithi073.stdout: Verifying : toolbox-0.0.99.4-5.module+el8.9.0+20326+387084d0.x 12/13 2024-01-27T23:23:01.570 INFO:teuthology.orchestra.run.smithi186.stdout: Installing : skopeo-2:1.13.3-1.module+el8.9.0+20326+387084d0.x8 12/13 2024-01-27T23:23:01.728 INFO:teuthology.orchestra.run.smithi186.stdout: Installing : cockpit-podman-75-1.module+el8.9.0+20326+387084d0. 13/13 2024-01-27T23:23:02.168 INFO:teuthology.orchestra.run.smithi186.stdout: Running scriptlet: cockpit-podman-75-1.module+el8.9.0+20326+387084d0. 13/13 2024-01-27T23:23:02.168 INFO:teuthology.orchestra.run.smithi186.stdout: Verifying : python3-pytoml-0.1.14-5.git7dea353.el8.noarch 1/13 2024-01-27T23:23:02.169 INFO:teuthology.orchestra.run.smithi186.stdout: Verifying : python3-pyxdg-0.25-16.el8.noarch 2/13 2024-01-27T23:23:02.169 INFO:teuthology.orchestra.run.smithi186.stdout: Verifying : yajl-2.1.0-12.el8.x86_64 3/13 2024-01-27T23:23:02.169 INFO:teuthology.orchestra.run.smithi186.stdout: Verifying : aardvark-dns-2:1.7.0-1.module+el8.9.0+20326+387084 4/13 2024-01-27T23:23:02.169 INFO:teuthology.orchestra.run.smithi186.stdout: Verifying : buildah-1:1.31.3-1.module+el8.9.0+20326+387084d0.x 5/13 2024-01-27T23:23:02.169 INFO:teuthology.orchestra.run.smithi186.stdout: Verifying : cockpit-podman-75-1.module+el8.9.0+20326+387084d0. 6/13 2024-01-27T23:23:02.169 INFO:teuthology.orchestra.run.smithi186.stdout: Verifying : criu-libs-3.18-4.module+el8.9.0+20326+387084d0.x86 7/13 2024-01-27T23:23:02.169 INFO:teuthology.orchestra.run.smithi186.stdout: Verifying : crun-1.8.7-1.module+el8.9.0+20326+387084d0.x86_64 8/13 2024-01-27T23:23:02.169 INFO:teuthology.orchestra.run.smithi186.stdout: Verifying : netavark-2:1.7.0-1.module+el8.9.0+20326+387084d0.x 9/13 2024-01-27T23:23:02.169 INFO:teuthology.orchestra.run.smithi186.stdout: Verifying : python3-podman-4.6.0-1.module+el8.9.0+20326+387084 10/13 2024-01-27T23:23:02.169 INFO:teuthology.orchestra.run.smithi186.stdout: Verifying : skopeo-2:1.13.3-1.module+el8.9.0+20326+387084d0.x8 11/13 2024-01-27T23:23:02.169 INFO:teuthology.orchestra.run.smithi186.stdout: Verifying : toolbox-0.0.99.4-5.module+el8.9.0+20326+387084d0.x 12/13 2024-01-27T23:23:05.985 INFO:teuthology.orchestra.run.smithi073.stdout: Verifying : udica-0.2.6-20.module+el8.9.0+20326+387084d0.noarc 13/13 2024-01-27T23:23:05.985 INFO:teuthology.orchestra.run.smithi073.stdout:Installed products updated. 2024-01-27T23:23:06.514 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:23:06.514 INFO:teuthology.orchestra.run.smithi073.stdout:Installed: 2024-01-27T23:23:06.514 INFO:teuthology.orchestra.run.smithi073.stdout: aardvark-dns-2:1.7.0-1.module+el8.9.0+20326+387084d0.x86_64 2024-01-27T23:23:06.514 INFO:teuthology.orchestra.run.smithi073.stdout: buildah-1:1.31.3-1.module+el8.9.0+20326+387084d0.x86_64 2024-01-27T23:23:06.515 INFO:teuthology.orchestra.run.smithi073.stdout: cockpit-podman-75-1.module+el8.9.0+20326+387084d0.noarch 2024-01-27T23:23:06.515 INFO:teuthology.orchestra.run.smithi073.stdout: criu-libs-3.18-4.module+el8.9.0+20326+387084d0.x86_64 2024-01-27T23:23:06.515 INFO:teuthology.orchestra.run.smithi073.stdout: crun-1.8.7-1.module+el8.9.0+20326+387084d0.x86_64 2024-01-27T23:23:06.515 INFO:teuthology.orchestra.run.smithi073.stdout: netavark-2:1.7.0-1.module+el8.9.0+20326+387084d0.x86_64 2024-01-27T23:23:06.515 INFO:teuthology.orchestra.run.smithi073.stdout: python3-podman-4.6.0-1.module+el8.9.0+20326+387084d0.noarch 2024-01-27T23:23:06.515 INFO:teuthology.orchestra.run.smithi073.stdout: python3-pytoml-0.1.14-5.git7dea353.el8.noarch 2024-01-27T23:23:06.515 INFO:teuthology.orchestra.run.smithi073.stdout: python3-pyxdg-0.25-16.el8.noarch 2024-01-27T23:23:06.515 INFO:teuthology.orchestra.run.smithi073.stdout: skopeo-2:1.13.3-1.module+el8.9.0+20326+387084d0.x86_64 2024-01-27T23:23:06.515 INFO:teuthology.orchestra.run.smithi073.stdout: toolbox-0.0.99.4-5.module+el8.9.0+20326+387084d0.x86_64 2024-01-27T23:23:06.515 INFO:teuthology.orchestra.run.smithi073.stdout: udica-0.2.6-20.module+el8.9.0+20326+387084d0.noarch 2024-01-27T23:23:06.515 INFO:teuthology.orchestra.run.smithi073.stdout: yajl-2.1.0-12.el8.x86_64 2024-01-27T23:23:06.515 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:23:06.515 INFO:teuthology.orchestra.run.smithi073.stdout:Complete! 2024-01-27T23:23:06.690 DEBUG:teuthology.parallel:result is None 2024-01-27T23:23:06.938 INFO:teuthology.orchestra.run.smithi186.stdout: Verifying : udica-0.2.6-20.module+el8.9.0+20326+387084d0.noarc 13/13 2024-01-27T23:23:06.938 INFO:teuthology.orchestra.run.smithi186.stdout:Installed products updated. 2024-01-27T23:23:07.495 INFO:teuthology.orchestra.run.smithi186.stdout: 2024-01-27T23:23:07.495 INFO:teuthology.orchestra.run.smithi186.stdout:Installed: 2024-01-27T23:23:07.495 INFO:teuthology.orchestra.run.smithi186.stdout: aardvark-dns-2:1.7.0-1.module+el8.9.0+20326+387084d0.x86_64 2024-01-27T23:23:07.495 INFO:teuthology.orchestra.run.smithi186.stdout: buildah-1:1.31.3-1.module+el8.9.0+20326+387084d0.x86_64 2024-01-27T23:23:07.495 INFO:teuthology.orchestra.run.smithi186.stdout: cockpit-podman-75-1.module+el8.9.0+20326+387084d0.noarch 2024-01-27T23:23:07.495 INFO:teuthology.orchestra.run.smithi186.stdout: criu-libs-3.18-4.module+el8.9.0+20326+387084d0.x86_64 2024-01-27T23:23:07.495 INFO:teuthology.orchestra.run.smithi186.stdout: crun-1.8.7-1.module+el8.9.0+20326+387084d0.x86_64 2024-01-27T23:23:07.496 INFO:teuthology.orchestra.run.smithi186.stdout: netavark-2:1.7.0-1.module+el8.9.0+20326+387084d0.x86_64 2024-01-27T23:23:07.496 INFO:teuthology.orchestra.run.smithi186.stdout: python3-podman-4.6.0-1.module+el8.9.0+20326+387084d0.noarch 2024-01-27T23:23:07.496 INFO:teuthology.orchestra.run.smithi186.stdout: python3-pytoml-0.1.14-5.git7dea353.el8.noarch 2024-01-27T23:23:07.496 INFO:teuthology.orchestra.run.smithi186.stdout: python3-pyxdg-0.25-16.el8.noarch 2024-01-27T23:23:07.496 INFO:teuthology.orchestra.run.smithi186.stdout: skopeo-2:1.13.3-1.module+el8.9.0+20326+387084d0.x86_64 2024-01-27T23:23:07.496 INFO:teuthology.orchestra.run.smithi186.stdout: toolbox-0.0.99.4-5.module+el8.9.0+20326+387084d0.x86_64 2024-01-27T23:23:07.496 INFO:teuthology.orchestra.run.smithi186.stdout: udica-0.2.6-20.module+el8.9.0+20326+387084d0.noarch 2024-01-27T23:23:07.496 INFO:teuthology.orchestra.run.smithi186.stdout: yajl-2.1.0-12.el8.x86_64 2024-01-27T23:23:07.496 INFO:teuthology.orchestra.run.smithi186.stdout: 2024-01-27T23:23:07.496 INFO:teuthology.orchestra.run.smithi186.stdout:Complete! 2024-01-27T23:23:07.674 DEBUG:teuthology.parallel:result is None 2024-01-27T23:23:07.674 INFO:teuthology.run_tasks:Running task nvme_loop... 2024-01-27T23:23:07.685 INFO:tasks.nvme_loop:Setting up nvme_loop on scratch devices... 2024-01-27T23:23:07.685 DEBUG:teuthology.orchestra.run.smithi073:> set -ex 2024-01-27T23:23:07.685 DEBUG:teuthology.orchestra.run.smithi073:> dd if=/scratch_devs of=/dev/stdout 2024-01-27T23:23:07.705 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-01-27T23:23:07.705 DEBUG:teuthology.orchestra.run.smithi073:> stat /dev/vg_nvme/lv_1 2024-01-27T23:23:07.764 INFO:teuthology.orchestra.run.smithi073.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-01-27T23:23:07.764 INFO:teuthology.orchestra.run.smithi073.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-01-27T23:23:07.764 INFO:teuthology.orchestra.run.smithi073.stdout:Device: 6h/6d Inode: 179359 Links: 1 2024-01-27T23:23:07.764 INFO:teuthology.orchestra.run.smithi073.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-01-27T23:23:07.765 INFO:teuthology.orchestra.run.smithi073.stdout:Context: system_u:object_r:device_t:s0 2024-01-27T23:23:07.765 INFO:teuthology.orchestra.run.smithi073.stdout:Access: 2024-01-27 23:23:01.086098785 +0000 2024-01-27T23:23:07.765 INFO:teuthology.orchestra.run.smithi073.stdout:Modify: 2024-01-27 23:22:01.781740434 +0000 2024-01-27T23:23:07.765 INFO:teuthology.orchestra.run.smithi073.stdout:Change: 2024-01-27 23:22:01.781740434 +0000 2024-01-27T23:23:07.765 INFO:teuthology.orchestra.run.smithi073.stdout: Birth: - 2024-01-27T23:23:07.765 DEBUG:teuthology.orchestra.run.smithi073:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-01-27T23:23:07.833 INFO:teuthology.orchestra.run.smithi073.stderr:1+0 records in 2024-01-27T23:23:07.833 INFO:teuthology.orchestra.run.smithi073.stderr:1+0 records out 2024-01-27T23:23:07.834 INFO:teuthology.orchestra.run.smithi073.stderr:512 bytes copied, 0.00033943 s, 1.5 MB/s 2024-01-27T23:23:07.835 DEBUG:teuthology.orchestra.run.smithi073:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-01-27T23:23:07.894 DEBUG:teuthology.orchestra.run.smithi073:> stat /dev/vg_nvme/lv_2 2024-01-27T23:23:07.953 INFO:teuthology.orchestra.run.smithi073.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-01-27T23:23:07.953 INFO:teuthology.orchestra.run.smithi073.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-01-27T23:23:07.953 INFO:teuthology.orchestra.run.smithi073.stdout:Device: 6h/6d Inode: 178667 Links: 1 2024-01-27T23:23:07.954 INFO:teuthology.orchestra.run.smithi073.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-01-27T23:23:07.954 INFO:teuthology.orchestra.run.smithi073.stdout:Context: system_u:object_r:device_t:s0 2024-01-27T23:23:07.954 INFO:teuthology.orchestra.run.smithi073.stdout:Access: 2024-01-27 23:23:01.086098785 +0000 2024-01-27T23:23:07.954 INFO:teuthology.orchestra.run.smithi073.stdout:Modify: 2024-01-27 23:22:02.134731866 +0000 2024-01-27T23:23:07.954 INFO:teuthology.orchestra.run.smithi073.stdout:Change: 2024-01-27 23:22:02.134731866 +0000 2024-01-27T23:23:07.954 INFO:teuthology.orchestra.run.smithi073.stdout: Birth: - 2024-01-27T23:23:07.954 DEBUG:teuthology.orchestra.run.smithi073:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-01-27T23:23:08.020 INFO:teuthology.orchestra.run.smithi073.stderr:1+0 records in 2024-01-27T23:23:08.021 INFO:teuthology.orchestra.run.smithi073.stderr:1+0 records out 2024-01-27T23:23:08.021 INFO:teuthology.orchestra.run.smithi073.stderr:512 bytes copied, 0.000206012 s, 2.5 MB/s 2024-01-27T23:23:08.022 DEBUG:teuthology.orchestra.run.smithi073:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-01-27T23:23:08.080 DEBUG:teuthology.orchestra.run.smithi073:> stat /dev/vg_nvme/lv_3 2024-01-27T23:23:08.137 INFO:teuthology.orchestra.run.smithi073.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-01-27T23:23:08.137 INFO:teuthology.orchestra.run.smithi073.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-01-27T23:23:08.137 INFO:teuthology.orchestra.run.smithi073.stdout:Device: 6h/6d Inode: 176514 Links: 1 2024-01-27T23:23:08.137 INFO:teuthology.orchestra.run.smithi073.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-01-27T23:23:08.137 INFO:teuthology.orchestra.run.smithi073.stdout:Context: system_u:object_r:device_t:s0 2024-01-27T23:23:08.137 INFO:teuthology.orchestra.run.smithi073.stdout:Access: 2024-01-27 23:23:01.086098785 +0000 2024-01-27T23:23:08.137 INFO:teuthology.orchestra.run.smithi073.stdout:Modify: 2024-01-27 23:22:02.473723637 +0000 2024-01-27T23:23:08.138 INFO:teuthology.orchestra.run.smithi073.stdout:Change: 2024-01-27 23:22:02.473723637 +0000 2024-01-27T23:23:08.138 INFO:teuthology.orchestra.run.smithi073.stdout: Birth: - 2024-01-27T23:23:08.138 DEBUG:teuthology.orchestra.run.smithi073:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-01-27T23:23:08.203 INFO:teuthology.orchestra.run.smithi073.stderr:1+0 records in 2024-01-27T23:23:08.203 INFO:teuthology.orchestra.run.smithi073.stderr:1+0 records out 2024-01-27T23:23:08.203 INFO:teuthology.orchestra.run.smithi073.stderr:512 bytes copied, 0.000190944 s, 2.7 MB/s 2024-01-27T23:23:08.204 DEBUG:teuthology.orchestra.run.smithi073:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-01-27T23:23:08.262 DEBUG:teuthology.orchestra.run.smithi073:> stat /dev/vg_nvme/lv_4 2024-01-27T23:23:08.320 INFO:teuthology.orchestra.run.smithi073.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-01-27T23:23:08.320 INFO:teuthology.orchestra.run.smithi073.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-01-27T23:23:08.320 INFO:teuthology.orchestra.run.smithi073.stdout:Device: 6h/6d Inode: 178772 Links: 1 2024-01-27T23:23:08.320 INFO:teuthology.orchestra.run.smithi073.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-01-27T23:23:08.320 INFO:teuthology.orchestra.run.smithi073.stdout:Context: system_u:object_r:device_t:s0 2024-01-27T23:23:08.320 INFO:teuthology.orchestra.run.smithi073.stdout:Access: 2024-01-27 23:23:01.086098785 +0000 2024-01-27T23:23:08.320 INFO:teuthology.orchestra.run.smithi073.stdout:Modify: 2024-01-27 23:22:02.812715409 +0000 2024-01-27T23:23:08.320 INFO:teuthology.orchestra.run.smithi073.stdout:Change: 2024-01-27 23:22:02.812715409 +0000 2024-01-27T23:23:08.320 INFO:teuthology.orchestra.run.smithi073.stdout: Birth: - 2024-01-27T23:23:08.320 DEBUG:teuthology.orchestra.run.smithi073:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-01-27T23:23:08.385 INFO:teuthology.orchestra.run.smithi073.stderr:1+0 records in 2024-01-27T23:23:08.385 INFO:teuthology.orchestra.run.smithi073.stderr:1+0 records out 2024-01-27T23:23:08.385 INFO:teuthology.orchestra.run.smithi073.stderr:512 bytes copied, 0.000211331 s, 2.4 MB/s 2024-01-27T23:23:08.386 DEBUG:teuthology.orchestra.run.smithi073:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-01-27T23:23:08.443 DEBUG:teuthology.orchestra.run.smithi073:> 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 2024-01-27T23:23:08.631 INFO:teuthology.orchestra.run.smithi073.stdout:loop 2024-01-27T23:23:08.632 INFO:tasks.nvme_loop:Connecting nvme_loop smithi073:/dev/vg_nvme/lv_1... 2024-01-27T23:23:08.632 DEBUG:teuthology.orchestra.run.smithi073:> 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 2024-01-27T23:23:08.667 INFO:teuthology.orchestra.run.smithi073.stdout:1 2024-01-27T23:23:08.703 INFO:teuthology.orchestra.run.smithi073.stdout:/dev/vg_nvme/lv_11 2024-01-27T23:23:08.743 INFO:tasks.nvme_loop:Connecting nvme_loop smithi073:/dev/vg_nvme/lv_2... 2024-01-27T23:23:08.743 DEBUG:teuthology.orchestra.run.smithi073:> 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 2024-01-27T23:23:08.819 INFO:teuthology.orchestra.run.smithi073.stdout:1 2024-01-27T23:23:08.854 INFO:teuthology.orchestra.run.smithi073.stdout:/dev/vg_nvme/lv_21 2024-01-27T23:23:08.893 INFO:tasks.nvme_loop:Connecting nvme_loop smithi073:/dev/vg_nvme/lv_3... 2024-01-27T23:23:08.893 DEBUG:teuthology.orchestra.run.smithi073:> 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 2024-01-27T23:23:08.969 INFO:teuthology.orchestra.run.smithi073.stdout:1 2024-01-27T23:23:09.004 INFO:teuthology.orchestra.run.smithi073.stdout:/dev/vg_nvme/lv_31 2024-01-27T23:23:09.043 INFO:tasks.nvme_loop:Connecting nvme_loop smithi073:/dev/vg_nvme/lv_4... 2024-01-27T23:23:09.043 DEBUG:teuthology.orchestra.run.smithi073:> 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 2024-01-27T23:23:09.124 INFO:teuthology.orchestra.run.smithi073.stdout:1 2024-01-27T23:23:09.160 INFO:teuthology.orchestra.run.smithi073.stdout:/dev/vg_nvme/lv_41 2024-01-27T23:23:09.198 DEBUG:teuthology.orchestra.run.smithi073:> set -ex 2024-01-27T23:23:09.198 DEBUG:teuthology.orchestra.run.smithi073:> dd if=/scratch_devs of=/dev/stdout 2024-01-27T23:23:09.254 DEBUG:teuthology.orchestra.run.smithi073:> sudo nvme list 2024-01-27T23:23:09.320 INFO:teuthology.orchestra.run.smithi073.stdout:Node SN Model Namespace Usage Format FW Rev 2024-01-27T23:23:09.320 INFO:teuthology.orchestra.run.smithi073.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-01-27T23:23:09.320 INFO:teuthology.orchestra.run.smithi073.stdout:/dev/nvme0n1 PHFT62040115400BGN INTEL SSDPEDMD400G4 1 400.09 GB / 400.09 GB 512 B + 0 B 8DV101H0 2024-01-27T23:23:09.320 INFO:teuthology.orchestra.run.smithi073.stdout:/dev/nvme1n1 53371f933d6e3b7b5bc5 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.18.0-5 2024-01-27T23:23:09.320 INFO:teuthology.orchestra.run.smithi073.stdout:/dev/nvme2n1 7ccaf57325b0ad6533fb Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.18.0-5 2024-01-27T23:23:09.321 INFO:teuthology.orchestra.run.smithi073.stdout:/dev/nvme3n1 c88e9db4bb54bc23773c Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.18.0-5 2024-01-27T23:23:09.321 INFO:teuthology.orchestra.run.smithi073.stdout:/dev/nvme4n1 b7f96c837fa6367138a8 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.18.0-5 2024-01-27T23:23:09.321 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-01-27T23:23:09.322 DEBUG:teuthology.orchestra.run.smithi073:> set -ex 2024-01-27T23:23:09.322 DEBUG:teuthology.orchestra.run.smithi073:> sudo dd of=/scratch_devs 2024-01-27T23:23:09.388 DEBUG:teuthology.orchestra.run.smithi186:> set -ex 2024-01-27T23:23:09.388 DEBUG:teuthology.orchestra.run.smithi186:> dd if=/scratch_devs of=/dev/stdout 2024-01-27T23:23:09.409 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-01-27T23:23:09.409 DEBUG:teuthology.orchestra.run.smithi186:> stat /dev/vg_nvme/lv_1 2024-01-27T23:23:09.471 INFO:teuthology.orchestra.run.smithi186.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-01-27T23:23:09.471 INFO:teuthology.orchestra.run.smithi186.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-01-27T23:23:09.471 INFO:teuthology.orchestra.run.smithi186.stdout:Device: 6h/6d Inode: 172408 Links: 1 2024-01-27T23:23:09.471 INFO:teuthology.orchestra.run.smithi186.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-01-27T23:23:09.471 INFO:teuthology.orchestra.run.smithi186.stdout:Context: system_u:object_r:device_t:s0 2024-01-27T23:23:09.471 INFO:teuthology.orchestra.run.smithi186.stdout:Access: 2024-01-27 23:23:01.898303755 +0000 2024-01-27T23:23:09.471 INFO:teuthology.orchestra.run.smithi186.stdout:Modify: 2024-01-27 23:22:12.897777372 +0000 2024-01-27T23:23:09.472 INFO:teuthology.orchestra.run.smithi186.stdout:Change: 2024-01-27 23:22:12.897777372 +0000 2024-01-27T23:23:09.472 INFO:teuthology.orchestra.run.smithi186.stdout: Birth: - 2024-01-27T23:23:09.472 DEBUG:teuthology.orchestra.run.smithi186:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-01-27T23:23:09.541 INFO:teuthology.orchestra.run.smithi186.stderr:1+0 records in 2024-01-27T23:23:09.542 INFO:teuthology.orchestra.run.smithi186.stderr:1+0 records out 2024-01-27T23:23:09.542 INFO:teuthology.orchestra.run.smithi186.stderr:512 bytes copied, 0.000268007 s, 1.9 MB/s 2024-01-27T23:23:09.543 DEBUG:teuthology.orchestra.run.smithi186:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-01-27T23:23:09.603 DEBUG:teuthology.orchestra.run.smithi186:> stat /dev/vg_nvme/lv_2 2024-01-27T23:23:09.663 INFO:teuthology.orchestra.run.smithi186.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-01-27T23:23:09.663 INFO:teuthology.orchestra.run.smithi186.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-01-27T23:23:09.663 INFO:teuthology.orchestra.run.smithi186.stdout:Device: 6h/6d Inode: 175050 Links: 1 2024-01-27T23:23:09.663 INFO:teuthology.orchestra.run.smithi186.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-01-27T23:23:09.663 INFO:teuthology.orchestra.run.smithi186.stdout:Context: system_u:object_r:device_t:s0 2024-01-27T23:23:09.664 INFO:teuthology.orchestra.run.smithi186.stdout:Access: 2024-01-27 23:23:01.898303755 +0000 2024-01-27T23:23:09.664 INFO:teuthology.orchestra.run.smithi186.stdout:Modify: 2024-01-27 23:22:13.248771046 +0000 2024-01-27T23:23:09.664 INFO:teuthology.orchestra.run.smithi186.stdout:Change: 2024-01-27 23:22:13.248771046 +0000 2024-01-27T23:23:09.664 INFO:teuthology.orchestra.run.smithi186.stdout: Birth: - 2024-01-27T23:23:09.664 DEBUG:teuthology.orchestra.run.smithi186:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-01-27T23:23:09.731 INFO:teuthology.orchestra.run.smithi186.stderr:1+0 records in 2024-01-27T23:23:09.731 INFO:teuthology.orchestra.run.smithi186.stderr:1+0 records out 2024-01-27T23:23:09.731 INFO:teuthology.orchestra.run.smithi186.stderr:512 bytes copied, 0.00023652 s, 2.2 MB/s 2024-01-27T23:23:09.732 DEBUG:teuthology.orchestra.run.smithi186:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-01-27T23:23:09.792 DEBUG:teuthology.orchestra.run.smithi186:> stat /dev/vg_nvme/lv_3 2024-01-27T23:23:09.850 INFO:teuthology.orchestra.run.smithi186.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-01-27T23:23:09.850 INFO:teuthology.orchestra.run.smithi186.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-01-27T23:23:09.851 INFO:teuthology.orchestra.run.smithi186.stdout:Device: 6h/6d Inode: 176883 Links: 1 2024-01-27T23:23:09.851 INFO:teuthology.orchestra.run.smithi186.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-01-27T23:23:09.851 INFO:teuthology.orchestra.run.smithi186.stdout:Context: system_u:object_r:device_t:s0 2024-01-27T23:23:09.851 INFO:teuthology.orchestra.run.smithi186.stdout:Access: 2024-01-27 23:23:01.898303755 +0000 2024-01-27T23:23:09.851 INFO:teuthology.orchestra.run.smithi186.stdout:Modify: 2024-01-27 23:22:13.591764865 +0000 2024-01-27T23:23:09.851 INFO:teuthology.orchestra.run.smithi186.stdout:Change: 2024-01-27 23:22:13.591764865 +0000 2024-01-27T23:23:09.851 INFO:teuthology.orchestra.run.smithi186.stdout: Birth: - 2024-01-27T23:23:09.851 DEBUG:teuthology.orchestra.run.smithi186:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-01-27T23:23:09.917 INFO:teuthology.orchestra.run.smithi186.stderr:1+0 records in 2024-01-27T23:23:09.917 INFO:teuthology.orchestra.run.smithi186.stderr:1+0 records out 2024-01-27T23:23:09.917 INFO:teuthology.orchestra.run.smithi186.stderr:512 bytes copied, 0.000189986 s, 2.7 MB/s 2024-01-27T23:23:09.918 DEBUG:teuthology.orchestra.run.smithi186:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-01-27T23:23:09.977 DEBUG:teuthology.orchestra.run.smithi186:> stat /dev/vg_nvme/lv_4 2024-01-27T23:23:10.035 INFO:teuthology.orchestra.run.smithi186.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-01-27T23:23:10.036 INFO:teuthology.orchestra.run.smithi186.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-01-27T23:23:10.036 INFO:teuthology.orchestra.run.smithi186.stdout:Device: 6h/6d Inode: 178265 Links: 1 2024-01-27T23:23:10.036 INFO:teuthology.orchestra.run.smithi186.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-01-27T23:23:10.036 INFO:teuthology.orchestra.run.smithi186.stdout:Context: system_u:object_r:device_t:s0 2024-01-27T23:23:10.036 INFO:teuthology.orchestra.run.smithi186.stdout:Access: 2024-01-27 23:23:01.898303755 +0000 2024-01-27T23:23:10.036 INFO:teuthology.orchestra.run.smithi186.stdout:Modify: 2024-01-27 23:22:13.925758845 +0000 2024-01-27T23:23:10.036 INFO:teuthology.orchestra.run.smithi186.stdout:Change: 2024-01-27 23:22:13.925758845 +0000 2024-01-27T23:23:10.036 INFO:teuthology.orchestra.run.smithi186.stdout: Birth: - 2024-01-27T23:23:10.036 DEBUG:teuthology.orchestra.run.smithi186:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-01-27T23:23:10.102 INFO:teuthology.orchestra.run.smithi186.stderr:1+0 records in 2024-01-27T23:23:10.102 INFO:teuthology.orchestra.run.smithi186.stderr:1+0 records out 2024-01-27T23:23:10.102 INFO:teuthology.orchestra.run.smithi186.stderr:512 bytes copied, 0.000242646 s, 2.1 MB/s 2024-01-27T23:23:10.103 DEBUG:teuthology.orchestra.run.smithi186:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-01-27T23:23:10.161 DEBUG:teuthology.orchestra.run.smithi186:> 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 2024-01-27T23:23:10.284 INFO:teuthology.orchestra.run.smithi186.stdout:loop 2024-01-27T23:23:10.285 INFO:tasks.nvme_loop:Connecting nvme_loop smithi186:/dev/vg_nvme/lv_1... 2024-01-27T23:23:10.285 DEBUG:teuthology.orchestra.run.smithi186:> 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 2024-01-27T23:23:10.321 INFO:teuthology.orchestra.run.smithi186.stdout:1 2024-01-27T23:23:10.356 INFO:teuthology.orchestra.run.smithi186.stdout:/dev/vg_nvme/lv_11 2024-01-27T23:23:10.396 INFO:tasks.nvme_loop:Connecting nvme_loop smithi186:/dev/vg_nvme/lv_2... 2024-01-27T23:23:10.396 DEBUG:teuthology.orchestra.run.smithi186:> 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 2024-01-27T23:23:10.474 INFO:teuthology.orchestra.run.smithi186.stdout:1 2024-01-27T23:23:10.509 INFO:teuthology.orchestra.run.smithi186.stdout:/dev/vg_nvme/lv_21 2024-01-27T23:23:10.548 INFO:tasks.nvme_loop:Connecting nvme_loop smithi186:/dev/vg_nvme/lv_3... 2024-01-27T23:23:10.548 DEBUG:teuthology.orchestra.run.smithi186:> 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 2024-01-27T23:23:10.624 INFO:teuthology.orchestra.run.smithi186.stdout:1 2024-01-27T23:23:10.659 INFO:teuthology.orchestra.run.smithi186.stdout:/dev/vg_nvme/lv_31 2024-01-27T23:23:10.698 INFO:tasks.nvme_loop:Connecting nvme_loop smithi186:/dev/vg_nvme/lv_4... 2024-01-27T23:23:10.699 DEBUG:teuthology.orchestra.run.smithi186:> 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 2024-01-27T23:23:10.773 INFO:teuthology.orchestra.run.smithi186.stdout:1 2024-01-27T23:23:10.808 INFO:teuthology.orchestra.run.smithi186.stdout:/dev/vg_nvme/lv_41 2024-01-27T23:23:10.847 DEBUG:teuthology.orchestra.run.smithi186:> set -ex 2024-01-27T23:23:10.847 DEBUG:teuthology.orchestra.run.smithi186:> dd if=/scratch_devs of=/dev/stdout 2024-01-27T23:23:10.905 DEBUG:teuthology.orchestra.run.smithi186:> sudo nvme list 2024-01-27T23:23:10.970 INFO:teuthology.orchestra.run.smithi186.stdout:Node SN Model Namespace Usage Format FW Rev 2024-01-27T23:23:10.971 INFO:teuthology.orchestra.run.smithi186.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-01-27T23:23:10.971 INFO:teuthology.orchestra.run.smithi186.stdout:/dev/nvme0n1 CVFT623300CB400BGN INTEL SSDPEDMD400G4 1 400.09 GB / 400.09 GB 512 B + 0 B 8DV101H0 2024-01-27T23:23:10.971 INFO:teuthology.orchestra.run.smithi186.stdout:/dev/nvme1n1 e50a9e97ae1b21ba523a Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.18.0-5 2024-01-27T23:23:10.971 INFO:teuthology.orchestra.run.smithi186.stdout:/dev/nvme2n1 6244a31c77830344f824 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.18.0-5 2024-01-27T23:23:10.971 INFO:teuthology.orchestra.run.smithi186.stdout:/dev/nvme3n1 433247904d7a9b49a056 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.18.0-5 2024-01-27T23:23:10.971 INFO:teuthology.orchestra.run.smithi186.stdout:/dev/nvme4n1 4f5b78abc38b574321c1 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.18.0-5 2024-01-27T23:23:10.972 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-01-27T23:23:10.972 DEBUG:teuthology.orchestra.run.smithi186:> set -ex 2024-01-27T23:23:10.972 DEBUG:teuthology.orchestra.run.smithi186:> sudo dd of=/scratch_devs 2024-01-27T23:23:11.038 INFO:teuthology.run_tasks:Running task cephadm... 2024-01-27T23:23:11.108 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': 'a72a5dace2353a54147d37bd2699a2a482507966'} 2024-01-27T23:23:11.108 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 2024-01-27T23:23:11.109 INFO:tasks.cephadm:Cluster fsid is 0959bd62-bd6b-11ee-95b2-87774f69a715 2024-01-27T23:23:11.109 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-01-27T23:23:11.109 INFO:tasks.cephadm:No mon roles; fabricating mons 2024-01-27T23:23:11.109 INFO:tasks.cephadm:Monitor IPs: {'mon.smithi073': '172.21.15.73', 'mon.smithi186': '172.21.15.186'} 2024-01-27T23:23:11.109 INFO:tasks.cephadm:Normalizing hostnames... 2024-01-27T23:23:11.109 DEBUG:teuthology.orchestra.run.smithi073:> sudo hostname $(hostname -s) 2024-01-27T23:23:11.143 DEBUG:teuthology.orchestra.run.smithi186:> sudo hostname $(hostname -s) 2024-01-27T23:23:11.171 INFO:tasks.cephadm:Downloading cephadm (repo https://github.com/ceph/ceph-ci.git ref a72a5dace2353a54147d37bd2699a2a482507966)... 2024-01-27T23:23:11.172 DEBUG:teuthology.orchestra.run.smithi073:> curl --silent https://raw.githubusercontent.com/ceph/ceph-ci/a72a5dace2353a54147d37bd2699a2a482507966/src/cephadm/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-01-27T23:23:11.331 INFO:teuthology.orchestra.run.smithi073.stdout:-rw-rw-r--. 1 ubuntu ubuntu 355729 Jan 27 23:23 /home/ubuntu/cephtest/cephadm 2024-01-27T23:23:11.331 DEBUG:teuthology.orchestra.run.smithi186:> curl --silent https://raw.githubusercontent.com/ceph/ceph-ci/a72a5dace2353a54147d37bd2699a2a482507966/src/cephadm/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-01-27T23:23:11.476 INFO:teuthology.orchestra.run.smithi186.stdout:-rw-rw-r--. 1 ubuntu ubuntu 355729 Jan 27 23:23 /home/ubuntu/cephtest/cephadm 2024-01-27T23:23:11.476 DEBUG:teuthology.orchestra.run.smithi073:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-01-27T23:23:11.498 DEBUG:teuthology.orchestra.run.smithi186:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-01-27T23:23:11.525 DEBUG:teuthology.orchestra.run.smithi073:> sudo mkdir -p /etc/ceph 2024-01-27T23:23:11.572 DEBUG:teuthology.orchestra.run.smithi186:> sudo mkdir -p /etc/ceph 2024-01-27T23:23:11.599 DEBUG:teuthology.orchestra.run.smithi073:> sudo chmod 777 /etc/ceph 2024-01-27T23:23:11.646 DEBUG:teuthology.orchestra.run.smithi186:> sudo chmod 777 /etc/ceph 2024-01-27T23:23:11.672 INFO:tasks.cephadm:Writing seed config... 2024-01-27T23:23:11.673 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-01-27T23:23:11.673 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-01-27T23:23:11.673 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-01-27T23:23:11.673 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-01-27T23:23:11.673 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-01-27T23:23:11.674 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-01-27T23:23:11.674 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-01-27T23:23:11.674 INFO:tasks.cephadm: override: [osd] osd shutdown pgref assert = True 2024-01-27T23:23:11.674 DEBUG:teuthology.orchestra.run.smithi073:> set -ex 2024-01-27T23:23:11.674 DEBUG:teuthology.orchestra.run.smithi073:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-01-27T23:23:11.706 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 = 0959bd62-bd6b-11ee-95b2-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 2024-01-27T23:23:11.707 DEBUG:teuthology.orchestra.run.smithi073:mon.smithi073> sudo journalctl -f -n 0 -u ceph-0959bd62-bd6b-11ee-95b2-87774f69a715@mon.smithi073.service 2024-01-27T23:23:11.749 INFO:tasks.cephadm:Bootstrapping... 2024-01-27T23:23:11.749 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 -v bootstrap --fsid 0959bd62-bd6b-11ee-95b2-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.73 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-01-27T23:23:11.781 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:-- Logs begin at Sat 2024-01-27 23:12:47 UTC. -- 2024-01-27T23:23:12.032 INFO:teuthology.orchestra.run.smithi073.stderr:-------------------------------------------------------------------------------- 2024-01-27T23:23:12.032 INFO:teuthology.orchestra.run.smithi073.stderr:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966', '-v', 'bootstrap', '--fsid', '0959bd62-bd6b-11ee-95b2-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.73', '--skip-admin-label'] 2024-01-27T23:23:13.754 INFO:teuthology.orchestra.run.smithi073.stderr:/bin/podman: 4.6.1 2024-01-27T23:23:13.765 INFO:teuthology.orchestra.run.smithi073.stderr:Verifying podman|docker is present... 2024-01-27T23:23:13.789 INFO:teuthology.orchestra.run.smithi073.stderr:/bin/podman: 4.6.1 2024-01-27T23:23:13.802 INFO:teuthology.orchestra.run.smithi073.stderr:Verifying lvm2 is present... 2024-01-27T23:23:13.802 INFO:teuthology.orchestra.run.smithi073.stderr:Verifying time synchronization is in place... 2024-01-27T23:23:13.809 INFO:teuthology.orchestra.run.smithi073.stderr:systemctl: Failed to get unit file state for chrony.service: No such file or directory 2024-01-27T23:23:13.816 INFO:teuthology.orchestra.run.smithi073.stderr:systemctl: inactive 2024-01-27T23:23:13.823 INFO:teuthology.orchestra.run.smithi073.stderr:systemctl: enabled 2024-01-27T23:23:13.829 INFO:teuthology.orchestra.run.smithi073.stderr:systemctl: active 2024-01-27T23:23:13.829 INFO:teuthology.orchestra.run.smithi073.stderr:Unit chronyd.service is enabled and running 2024-01-27T23:23:13.829 INFO:teuthology.orchestra.run.smithi073.stderr:Repeating the final host check... 2024-01-27T23:23:13.850 INFO:teuthology.orchestra.run.smithi073.stderr:/bin/podman: 4.6.1 2024-01-27T23:23:13.863 INFO:teuthology.orchestra.run.smithi073.stderr:podman (/bin/podman) version 4.6.1 is present 2024-01-27T23:23:13.863 INFO:teuthology.orchestra.run.smithi073.stderr:systemctl is present 2024-01-27T23:23:13.863 INFO:teuthology.orchestra.run.smithi073.stderr:lvcreate is present 2024-01-27T23:23:13.869 INFO:teuthology.orchestra.run.smithi073.stderr:systemctl: Failed to get unit file state for chrony.service: No such file or directory 2024-01-27T23:23:13.875 INFO:teuthology.orchestra.run.smithi073.stderr:systemctl: inactive 2024-01-27T23:23:13.881 INFO:teuthology.orchestra.run.smithi073.stderr:systemctl: enabled 2024-01-27T23:23:13.887 INFO:teuthology.orchestra.run.smithi073.stderr:systemctl: active 2024-01-27T23:23:13.888 INFO:teuthology.orchestra.run.smithi073.stderr:Unit chronyd.service is enabled and running 2024-01-27T23:23:13.888 INFO:teuthology.orchestra.run.smithi073.stderr:Host looks OK 2024-01-27T23:23:13.888 INFO:teuthology.orchestra.run.smithi073.stderr:Cluster fsid: 0959bd62-bd6b-11ee-95b2-87774f69a715 2024-01-27T23:23:13.888 INFO:teuthology.orchestra.run.smithi073.stderr:Acquiring lock 140059610464384 on /run/cephadm/0959bd62-bd6b-11ee-95b2-87774f69a715.lock 2024-01-27T23:23:13.889 INFO:teuthology.orchestra.run.smithi073.stderr:Lock 140059610464384 acquired on /run/cephadm/0959bd62-bd6b-11ee-95b2-87774f69a715.lock 2024-01-27T23:23:13.889 INFO:teuthology.orchestra.run.smithi073.stderr:Verifying IP 172.21.15.73 port 3300 ... 2024-01-27T23:23:13.889 INFO:teuthology.orchestra.run.smithi073.stderr:Verifying IP 172.21.15.73 port 6789 ... 2024-01-27T23:23:13.889 INFO:teuthology.orchestra.run.smithi073.stderr:Base mon IP(s) is [172.21.15.73:3300, 172.21.15.73:6789], mon addrv is [v2:172.21.15.73:3300,v1:172.21.15.73:6789] 2024-01-27T23:23:13.892 INFO:teuthology.orchestra.run.smithi073.stderr:/sbin/ip: default via 172.21.15.254 dev enp3s0f1 proto dhcp metric 100 2024-01-27T23:23:13.892 INFO:teuthology.orchestra.run.smithi073.stderr:/sbin/ip: 172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.73 metric 100 2024-01-27T23:23:13.895 INFO:teuthology.orchestra.run.smithi073.stderr:/sbin/ip: ::1 dev lo proto kernel metric 256 pref medium 2024-01-27T23:23:13.895 INFO:teuthology.orchestra.run.smithi073.stderr:/sbin/ip: fe80::/64 dev enp3s0f1 proto kernel metric 1024 pref medium 2024-01-27T23:23:13.895 INFO:teuthology.orchestra.run.smithi073.stderr:/sbin/ip: default via fe80::327c:5e00:6487:71e0 dev enp3s0f1 proto ra metric 100 pref medium 2024-01-27T23:23:13.898 INFO:teuthology.orchestra.run.smithi073.stderr:/sbin/ip: 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-01-27T23:23:13.898 INFO:teuthology.orchestra.run.smithi073.stderr:/sbin/ip: inet6 ::1/128 scope host 2024-01-27T23:23:13.898 INFO:teuthology.orchestra.run.smithi073.stderr:/sbin/ip: valid_lft forever preferred_lft forever 2024-01-27T23:23:13.898 INFO:teuthology.orchestra.run.smithi073.stderr:/sbin/ip: 5: enp3s0f1: mtu 1500 state UP qlen 1000 2024-01-27T23:23:13.899 INFO:teuthology.orchestra.run.smithi073.stderr:/sbin/ip: inet6 fe80::52c9:e39a:cfed:f5d7/64 scope link noprefixroute 2024-01-27T23:23:13.899 INFO:teuthology.orchestra.run.smithi073.stderr:/sbin/ip: valid_lft forever preferred_lft forever 2024-01-27T23:23:13.899 INFO:teuthology.orchestra.run.smithi073.stderr:Mon IP `172.21.15.73` is in CIDR network `172.21.0.0/20` 2024-01-27T23:23:13.899 INFO:teuthology.orchestra.run.smithi073.stderr:Mon IP `172.21.15.73` is in CIDR network `172.21.0.0/20` 2024-01-27T23:23:13.899 INFO:teuthology.orchestra.run.smithi073.stderr:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20'] 2024-01-27T23:23:13.900 INFO:teuthology.orchestra.run.smithi073.stderr:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-01-27T23:23:13.900 INFO:teuthology.orchestra.run.smithi073.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966... 2024-01-27T23:23:14.019 INFO:teuthology.orchestra.run.smithi073.stderr:/bin/podman: Trying to pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966... 2024-01-27T23:23:14.106 INFO:teuthology.orchestra.run.smithi073.stderr:/bin/podman: Getting image source signatures 2024-01-27T23:23:14.107 INFO:teuthology.orchestra.run.smithi073.stderr:/bin/podman: Copying blob sha256:272062c903b6ececbd2c0f365ed6f0b6db06d6500fad2b0ef7b80dc8bcc8e572 2024-01-27T23:23:14.107 INFO:teuthology.orchestra.run.smithi073.stderr:/bin/podman: Copying blob sha256:ea3366b8a90265ae3f6d3736cb0de4b52da4ffec919b46c6cb5bc5be1372efe8 2024-01-27T23:23:35.367 INFO:teuthology.orchestra.run.smithi073.stderr:/bin/podman: Copying config sha256:4f538c03cdfadf0a9735c83c0be20393fbbcd13a6afafc9dec4d55eb388f2005 2024-01-27T23:23:35.425 INFO:teuthology.orchestra.run.smithi073.stderr:/bin/podman: Writing manifest to image destination 2024-01-27T23:23:35.733 INFO:teuthology.orchestra.run.smithi073.stderr:/bin/podman: 4f538c03cdfadf0a9735c83c0be20393fbbcd13a6afafc9dec4d55eb388f2005 2024-01-27T23:23:36.258 INFO:teuthology.orchestra.run.smithi073.stderr:ceph: ceph version 16.2.14-508-ga72a5dac (a72a5dace2353a54147d37bd2699a2a482507966) pacific (stable) 2024-01-27T23:23:36.576 INFO:teuthology.orchestra.run.smithi073.stderr:Ceph version: ceph version 16.2.14-508-ga72a5dac (a72a5dace2353a54147d37bd2699a2a482507966) pacific (stable) 2024-01-27T23:23:36.576 INFO:teuthology.orchestra.run.smithi073.stderr:Extracting ceph user uid/gid from container image... 2024-01-27T23:23:36.844 INFO:teuthology.orchestra.run.smithi073.stderr:stat: 167 167 2024-01-27T23:23:37.152 INFO:teuthology.orchestra.run.smithi073.stderr:Creating initial keys... 2024-01-27T23:23:37.375 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-authtool: AQB5kLVlblGEFhAAIqguzJlGHwsKLxBn1aaytw== 2024-01-27T23:23:37.969 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-authtool: AQB5kLVlbXvKOBAAiKKk11I9T66yHhFLrRMfPg== 2024-01-27T23:23:38.517 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-authtool: AQB6kLVlksh6HhAAGcdnAxGhJW7DutcINXZp4A== 2024-01-27T23:23:38.847 INFO:teuthology.orchestra.run.smithi073.stderr:Creating initial monmap... 2024-01-27T23:23:39.112 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/monmaptool: /usr/bin/monmaptool: monmap file /tmp/monmap 2024-01-27T23:23:39.113 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/monmaptool: /usr/bin/monmaptool: set fsid to 0959bd62-bd6b-11ee-95b2-87774f69a715 2024-01-27T23:23:39.113 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/monmaptool: /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-01-27T23:23:39.442 INFO:teuthology.orchestra.run.smithi073.stderr:monmaptool for smithi073 [v2:172.21.15.73:3300,v1:172.21.15.73:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-01-27T23:23:39.442 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/monmaptool: set fsid to 0959bd62-bd6b-11ee-95b2-87774f69a715 2024-01-27T23:23:39.442 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-01-27T23:23:39.442 INFO:teuthology.orchestra.run.smithi073.stderr: 2024-01-27T23:23:39.442 INFO:teuthology.orchestra.run.smithi073.stderr:Creating mon... 2024-01-27T23:23:39.702 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.684+0000 7f0312979880 0 set uid:gid to 167:167 (ceph:ceph) 2024-01-27T23:23:39.702 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.685+0000 7f0312979880 1 imported monmap: 2024-01-27T23:23:39.702 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: epoch 0 2024-01-27T23:23:39.702 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 2024-01-27T23:23:39.702 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: last_changed 2024-01-27T23:23:39.106368+0000 2024-01-27T23:23:39.702 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: created 2024-01-27T23:23:39.106368+0000 2024-01-27T23:23:39.702 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: min_mon_release 0 (unknown) 2024-01-27T23:23:39.702 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: election_strategy: 1 2024-01-27T23:23:39.703 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: 0: [v2:172.21.15.73:3300/0,v1:172.21.15.73:6789/0] mon.smithi073 2024-01-27T23:23:39.703 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: 2024-01-27T23:23:39.703 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.685+0000 7f0312979880 0 /usr/bin/ceph-mon: set fsid to 0959bd62-bd6b-11ee-95b2-87774f69a715 2024-01-27T23:23:39.703 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: RocksDB version: 6.8.1 2024-01-27T23:23:39.703 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: 2024-01-27T23:23:39.703 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Git sha rocksdb_build_git_sha:@0@ 2024-01-27T23:23:39.703 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Compile date Jan 25 2024 2024-01-27T23:23:39.703 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: DB SUMMARY 2024-01-27T23:23:39.703 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: 2024-01-27T23:23:39.703 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi073/store.db dir, Total Num: 0, files: 2024-01-27T23:23:39.703 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: 2024-01-27T23:23:39.703 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi073/store.db: 2024-01-27T23:23:39.703 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: 2024-01-27T23:23:39.703 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.error_if_exists: 0 2024-01-27T23:23:39.703 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.create_if_missing: 1 2024-01-27T23:23:39.704 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.paranoid_checks: 1 2024-01-27T23:23:39.704 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.env: 0x55685b8c8080 2024-01-27T23:23:39.704 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.fs: Posix File System 2024-01-27T23:23:39.704 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.info_log: 0x55685d6a3380 2024-01-27T23:23:39.704 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.max_file_opening_threads: 16 2024-01-27T23:23:39.704 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.statistics: (nil) 2024-01-27T23:23:39.704 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.use_fsync: 0 2024-01-27T23:23:39.704 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.max_log_file_size: 0 2024-01-27T23:23:39.704 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-01-27T23:23:39.704 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.log_file_time_to_roll: 0 2024-01-27T23:23:39.705 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.keep_log_file_num: 1000 2024-01-27T23:23:39.705 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.recycle_log_file_num: 0 2024-01-27T23:23:39.705 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.allow_fallocate: 1 2024-01-27T23:23:39.705 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.allow_mmap_reads: 0 2024-01-27T23:23:39.705 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.allow_mmap_writes: 0 2024-01-27T23:23:39.705 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.use_direct_reads: 0 2024-01-27T23:23:39.705 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-01-27T23:23:39.705 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.create_missing_column_families: 0 2024-01-27T23:23:39.705 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.db_log_dir: 2024-01-27T23:23:39.705 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.wal_dir: /var/lib/ceph/mon/ceph-smithi073/store.db 2024-01-27T23:23:39.705 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.table_cache_numshardbits: 6 2024-01-27T23:23:39.706 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.max_subcompactions: 1 2024-01-27T23:23:39.706 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.max_background_flushes: -1 2024-01-27T23:23:39.706 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-01-27T23:23:39.706 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-01-27T23:23:39.706 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-01-27T23:23:39.706 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-01-27T23:23:39.706 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-01-27T23:23:39.706 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.advise_random_on_open: 1 2024-01-27T23:23:39.706 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.db_write_buffer_size: 0 2024-01-27T23:23:39.706 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.write_buffer_manager: 0x55685d6a9980 2024-01-27T23:23:39.706 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-01-27T23:23:39.706 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.new_table_reader_for_compaction_inputs: 0 2024-01-27T23:23:39.706 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-01-27T23:23:39.706 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.use_adaptive_mutex: 0 2024-01-27T23:23:39.706 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.rate_limiter: (nil) 2024-01-27T23:23:39.707 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-01-27T23:23:39.707 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.wal_recovery_mode: 2 2024-01-27T23:23:39.707 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.enable_thread_tracking: 0 2024-01-27T23:23:39.707 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.enable_pipelined_write: 0 2024-01-27T23:23:39.707 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.unordered_write: 0 2024-01-27T23:23:39.707 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-01-27T23:23:39.707 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-01-27T23:23:39.707 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-01-27T23:23:39.707 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-01-27T23:23:39.707 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.row_cache: None 2024-01-27T23:23:39.707 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.wal_filter: None 2024-01-27T23:23:39.707 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-01-27T23:23:39.707 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.allow_ingest_behind: 0 2024-01-27T23:23:39.708 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.preserve_deletes: 0 2024-01-27T23:23:39.708 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.two_write_queues: 0 2024-01-27T23:23:39.708 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.manual_wal_flush: 0 2024-01-27T23:23:39.708 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.atomic_flush: 0 2024-01-27T23:23:39.708 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-01-27T23:23:39.708 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.persist_stats_to_disk: 0 2024-01-27T23:23:39.708 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-01-27T23:23:39.708 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.log_readahead_size: 0 2024-01-27T23:23:39.708 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.sst_file_checksum_func: Unknown 2024-01-27T23:23:39.708 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.max_background_jobs: 2 2024-01-27T23:23:39.708 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.max_background_compactions: -1 2024-01-27T23:23:39.708 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-01-27T23:23:39.708 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-01-27T23:23:39.709 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.delayed_write_rate : 16777216 2024-01-27T23:23:39.709 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.max_total_wal_size: 0 2024-01-27T23:23:39.709 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-01-27T23:23:39.709 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.stats_dump_period_sec: 600 2024-01-27T23:23:39.709 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.stats_persist_period_sec: 600 2024-01-27T23:23:39.709 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-01-27T23:23:39.709 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.max_open_files: -1 2024-01-27T23:23:39.709 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.bytes_per_sync: 0 2024-01-27T23:23:39.709 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-01-27T23:23:39.709 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-01-27T23:23:39.709 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Options.compaction_readahead_size: 0 2024-01-27T23:23:39.709 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Compression algorithms supported: 2024-01-27T23:23:39.709 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-01-27T23:23:39.709 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: kZSTD supported: 0 2024-01-27T23:23:39.709 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: kXpressCompression supported: 0 2024-01-27T23:23:39.710 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: kLZ4HCCompression supported: 1 2024-01-27T23:23:39.710 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: kLZ4Compression supported: 1 2024-01-27T23:23:39.710 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: kBZip2Compression supported: 0 2024-01-27T23:23:39.710 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: kZlibCompression supported: 1 2024-01-27T23:23:39.710 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: kSnappyCompression supported: 1 2024-01-27T23:23:39.710 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-01-27T23:23:39.710 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.686+0000 7f0312979880 4 rocksdb: [db_impl/db_impl_open.cc:273] Creating manifest 1 2024-01-27T23:23:39.710 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: 2024-01-27T23:23:39.710 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: [version_set.cc:4413] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi073/store.db/MANIFEST-000001 2024-01-27T23:23:39.710 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: 2024-01-27T23:23:39.710 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: [column_family.cc:552] --------------- Options for column family [default]: 2024-01-27T23:23:39.710 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: 2024-01-27T23:23:39.710 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-01-27T23:23:39.710 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.merge_operator: 2024-01-27T23:23:39.710 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.compaction_filter: None 2024-01-27T23:23:39.711 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.compaction_filter_factory: None 2024-01-27T23:23:39.711 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-01-27T23:23:39.711 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.table_factory: BlockBasedTable 2024-01-27T23:23:39.711 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55685d5b9d30) 2024-01-27T23:23:39.711 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: cache_index_and_filter_blocks: 1 2024-01-27T23:23:39.711 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: cache_index_and_filter_blocks_with_high_priority: 0 2024-01-27T23:23:39.711 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: pin_l0_filter_and_index_blocks_in_cache: 0 2024-01-27T23:23:39.711 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: pin_top_level_index_and_filter: 1 2024-01-27T23:23:39.711 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: index_type: 0 2024-01-27T23:23:39.711 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: data_block_index_type: 0 2024-01-27T23:23:39.711 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: index_shortening: 1 2024-01-27T23:23:39.711 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: data_block_hash_table_util_ratio: 0.750000 2024-01-27T23:23:39.711 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: hash_index_allow_collision: 1 2024-01-27T23:23:39.712 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: checksum: 1 2024-01-27T23:23:39.712 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: no_block_cache: 0 2024-01-27T23:23:39.712 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: block_cache: 0x55685d5eed10 2024-01-27T23:23:39.712 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: block_cache_name: BinnedLRUCache 2024-01-27T23:23:39.712 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: block_cache_options: 2024-01-27T23:23:39.712 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: capacity : 536870912 2024-01-27T23:23:39.712 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: num_shard_bits : 4 2024-01-27T23:23:39.712 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: strict_capacity_limit : 0 2024-01-27T23:23:39.712 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: high_pri_pool_ratio: 0.000 2024-01-27T23:23:39.712 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: block_cache_compressed: (nil) 2024-01-27T23:23:39.712 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: persistent_cache: (nil) 2024-01-27T23:23:39.712 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: block_size: 4096 2024-01-27T23:23:39.712 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: block_size_deviation: 10 2024-01-27T23:23:39.712 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: block_restart_interval: 16 2024-01-27T23:23:39.712 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: index_block_restart_interval: 1 2024-01-27T23:23:39.713 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: metadata_block_size: 4096 2024-01-27T23:23:39.713 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: partition_filters: 0 2024-01-27T23:23:39.713 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: use_delta_encoding: 1 2024-01-27T23:23:39.713 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: filter_policy: rocksdb.BuiltinBloomFilter 2024-01-27T23:23:39.713 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: whole_key_filtering: 1 2024-01-27T23:23:39.713 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: verify_compression: 0 2024-01-27T23:23:39.713 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: read_amp_bytes_per_bit: 0 2024-01-27T23:23:39.713 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: format_version: 2 2024-01-27T23:23:39.713 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: enable_index_compression: 1 2024-01-27T23:23:39.713 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: block_align: 0 2024-01-27T23:23:39.713 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: 2024-01-27T23:23:39.713 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.write_buffer_size: 33554432 2024-01-27T23:23:39.713 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.max_write_buffer_number: 2 2024-01-27T23:23:39.713 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.compression: NoCompression 2024-01-27T23:23:39.714 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.bottommost_compression: Disabled 2024-01-27T23:23:39.714 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.prefix_extractor: nullptr 2024-01-27T23:23:39.714 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-01-27T23:23:39.714 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.num_levels: 7 2024-01-27T23:23:39.714 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-01-27T23:23:39.714 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-01-27T23:23:39.714 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-01-27T23:23:39.714 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-01-27T23:23:39.714 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-01-27T23:23:39.714 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-01-27T23:23:39.714 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-01-27T23:23:39.714 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-01-27T23:23:39.714 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-01-27T23:23:39.714 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.compression_opts.window_bits: -14 2024-01-27T23:23:39.715 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.compression_opts.level: 32767 2024-01-27T23:23:39.715 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.compression_opts.strategy: 0 2024-01-27T23:23:39.715 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-01-27T23:23:39.715 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-01-27T23:23:39.715 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.compression_opts.enabled: false 2024-01-27T23:23:39.715 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-01-27T23:23:39.715 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-01-27T23:23:39.715 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-01-27T23:23:39.715 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.target_file_size_base: 67108864 2024-01-27T23:23:39.715 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.target_file_size_multiplier: 1 2024-01-27T23:23:39.715 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-01-27T23:23:39.715 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-01-27T23:23:39.715 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-01-27T23:23:39.715 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-01-27T23:23:39.715 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-01-27T23:23:39.716 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-01-27T23:23:39.716 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-01-27T23:23:39.716 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-01-27T23:23:39.716 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-01-27T23:23:39.716 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-01-27T23:23:39.716 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-01-27T23:23:39.716 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-01-27T23:23:39.716 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.arena_block_size: 4194304 2024-01-27T23:23:39.716 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-01-27T23:23:39.716 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-01-27T23:23:39.716 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.rate_limit_delay_max_milliseconds: 100 2024-01-27T23:23:39.716 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.disable_auto_compactions: 0 2024-01-27T23:23:39.716 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-01-27T23:23:39.717 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-01-27T23:23:39.717 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-01-27T23:23:39.717 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-01-27T23:23:39.717 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-01-27T23:23:39.717 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-01-27T23:23:39.717 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-01-27T23:23:39.717 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-01-27T23:23:39.717 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-01-27T23:23:39.717 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-01-27T23:23:39.717 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.table_properties_collectors: 2024-01-27T23:23:39.717 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.inplace_update_support: 0 2024-01-27T23:23:39.717 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-01-27T23:23:39.717 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-01-27T23:23:39.717 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-01-27T23:23:39.717 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.memtable_huge_page_size: 0 2024-01-27T23:23:39.718 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.bloom_locality: 0 2024-01-27T23:23:39.718 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.max_successive_merges: 0 2024-01-27T23:23:39.718 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-01-27T23:23:39.718 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.paranoid_file_checks: 0 2024-01-27T23:23:39.718 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.force_consistency_checks: 0 2024-01-27T23:23:39.718 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.report_bg_io_stats: 0 2024-01-27T23:23:39.718 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.ttl: 2592000 2024-01-27T23:23:39.718 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-01-27T23:23:39.718 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: [version_set.cc:4568] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi073/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 2024-01-27T23:23:39.718 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: 2024-01-27T23:23:39.718 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.687+0000 7f0312979880 4 rocksdb: [version_set.cc:4577] Column family [default] (ID 0), log number is 0 2024-01-27T23:23:39.718 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: 2024-01-27T23:23:39.718 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.688+0000 7f0312979880 4 rocksdb: DB pointer 0x55685d6b7800 2024-01-27T23:23:39.718 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.688+0000 7f02fb7ec700 4 rocksdb: [db_impl/db_impl.cc:850] ------- DUMPING STATS ------- 2024-01-27T23:23:39.718 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.688+0000 7f02fb7ec700 4 rocksdb: [db_impl/db_impl.cc:851] 2024-01-27T23:23:39.719 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: ** DB Stats ** 2024-01-27T23:23:39.719 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: Uptime(secs): 0.0 total, 0.0 interval 2024-01-27T23:23:39.719 INFO:teuthology.orchestra.run.smithi073.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 2024-01-27T23:23:39.719 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-01-27T23:23:39.719 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-01-27T23:23:39.719 INFO:teuthology.orchestra.run.smithi073.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 2024-01-27T23:23:39.719 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 MB, 0.00 MB/s 2024-01-27T23:23:39.719 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-01-27T23:23:39.719 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: 2024-01-27T23:23:39.719 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2024-01-27T23:23:39.719 INFO:teuthology.orchestra.run.smithi073.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 2024-01-27T23:23:39.719 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-01-27T23:23:39.719 INFO:teuthology.orchestra.run.smithi073.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 2024-01-27T23:23:39.719 INFO:teuthology.orchestra.run.smithi073.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 2024-01-27T23:23:39.720 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: 2024-01-27T23:23:39.720 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2024-01-27T23:23:39.720 INFO:teuthology.orchestra.run.smithi073.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 2024-01-27T23:23:39.720 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-01-27T23:23:39.720 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: Uptime(secs): 0.0 total, 0.0 interval 2024-01-27T23:23:39.720 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: Flush(GB): cumulative 0.000, interval 0.000 2024-01-27T23:23:39.720 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: AddFile(GB): cumulative 0.000, interval 0.000 2024-01-27T23:23:39.720 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: AddFile(Total Files): cumulative 0, interval 0 2024-01-27T23:23:39.720 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: AddFile(L0 Files): cumulative 0, interval 0 2024-01-27T23:23:39.720 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: AddFile(Keys): cumulative 0, interval 0 2024-01-27T23:23:39.720 INFO:teuthology.orchestra.run.smithi073.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 2024-01-27T23:23:39.720 INFO:teuthology.orchestra.run.smithi073.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 2024-01-27T23:23:39.720 INFO:teuthology.orchestra.run.smithi073.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 2024-01-27T23:23:39.720 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: 2024-01-27T23:23:39.721 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: ** File Read Latency Histogram By Level [default] ** 2024-01-27T23:23:39.721 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: 2024-01-27T23:23:39.721 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2024-01-27T23:23:39.721 INFO:teuthology.orchestra.run.smithi073.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 2024-01-27T23:23:39.721 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-01-27T23:23:39.721 INFO:teuthology.orchestra.run.smithi073.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 2024-01-27T23:23:39.721 INFO:teuthology.orchestra.run.smithi073.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 2024-01-27T23:23:39.721 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: 2024-01-27T23:23:39.721 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2024-01-27T23:23:39.721 INFO:teuthology.orchestra.run.smithi073.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 2024-01-27T23:23:39.721 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-01-27T23:23:39.721 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: Uptime(secs): 0.0 total, 0.0 interval 2024-01-27T23:23:39.721 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: Flush(GB): cumulative 0.000, interval 0.000 2024-01-27T23:23:39.721 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: AddFile(GB): cumulative 0.000, interval 0.000 2024-01-27T23:23:39.721 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: AddFile(Total Files): cumulative 0, interval 0 2024-01-27T23:23:39.722 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: AddFile(L0 Files): cumulative 0, interval 0 2024-01-27T23:23:39.722 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: AddFile(Keys): cumulative 0, interval 0 2024-01-27T23:23:39.722 INFO:teuthology.orchestra.run.smithi073.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 2024-01-27T23:23:39.722 INFO:teuthology.orchestra.run.smithi073.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 2024-01-27T23:23:39.722 INFO:teuthology.orchestra.run.smithi073.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 2024-01-27T23:23:39.722 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: 2024-01-27T23:23:39.722 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: ** File Read Latency Histogram By Level [default] ** 2024-01-27T23:23:39.722 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: 2024-01-27T23:23:39.722 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.689+0000 7f0312979880 4 rocksdb: [db_impl/db_impl.cc:397] Shutdown: canceling all background work 2024-01-27T23:23:39.722 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.689+0000 7f0312979880 4 rocksdb: [db_impl/db_impl.cc:573] Shutdown complete 2024-01-27T23:23:39.722 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph-mon: debug 2024-01-27T23:23:39.689+0000 7f0312979880 0 /usr/bin/ceph-mon: created monfs at /var/lib/ceph/mon/ceph-smithi073 for mon.smithi073 2024-01-27T23:23:40.024 INFO:teuthology.orchestra.run.smithi073.stderr:create mon.smithi073 on 2024-01-27T23:23:40.135 INFO:teuthology.orchestra.run.smithi073.stderr:systemctl: Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /etc/systemd/system/ceph.target. 2024-01-27T23:23:40.234 INFO:teuthology.orchestra.run.smithi073.stderr:systemctl: Created symlink /etc/systemd/system/multi-user.target.wants/ceph-0959bd62-bd6b-11ee-95b2-87774f69a715.target → /etc/systemd/system/ceph-0959bd62-bd6b-11ee-95b2-87774f69a715.target. 2024-01-27T23:23:40.235 INFO:teuthology.orchestra.run.smithi073.stderr:systemctl: Created symlink /etc/systemd/system/ceph.target.wants/ceph-0959bd62-bd6b-11ee-95b2-87774f69a715.target → /etc/systemd/system/ceph-0959bd62-bd6b-11ee-95b2-87774f69a715.target. 2024-01-27T23:23:40.443 INFO:teuthology.orchestra.run.smithi073.stderr:systemctl: Failed to reset failed state of unit ceph-0959bd62-bd6b-11ee-95b2-87774f69a715@mon.smithi073.service: Unit ceph-0959bd62-bd6b-11ee-95b2-87774f69a715@mon.smithi073.service not loaded. 2024-01-27T23:23:40.450 INFO:teuthology.orchestra.run.smithi073.stderr:systemctl: Created symlink /etc/systemd/system/ceph-0959bd62-bd6b-11ee-95b2-87774f69a715.target.wants/ceph-0959bd62-bd6b-11ee-95b2-87774f69a715@mon.smithi073.service → /etc/systemd/system/ceph-0959bd62-bd6b-11ee-95b2-87774f69a715@.service. 2024-01-27T23:23:40.770 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:40 smithi073 systemd[1]: Starting Ceph mon.smithi073 for 0959bd62-bd6b-11ee-95b2-87774f69a715... 2024-01-27T23:23:40.904 INFO:teuthology.orchestra.run.smithi073.stderr:systemctl: disabled 2024-01-27T23:23:40.911 INFO:teuthology.orchestra.run.smithi073.stderr:systemctl: inactive 2024-01-27T23:23:40.912 INFO:teuthology.orchestra.run.smithi073.stderr:firewalld.service is not enabled 2024-01-27T23:23:40.912 INFO:teuthology.orchestra.run.smithi073.stderr:Not possible to enable service . firewalld.service is not available 2024-01-27T23:23:40.912 INFO:teuthology.orchestra.run.smithi073.stderr:Waiting for mon to start... 2024-01-27T23:23:40.913 INFO:teuthology.orchestra.run.smithi073.stderr:Waiting for mon... 2024-01-27T23:23:41.051 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:40 smithi073 bash[32348]: 19fac211662192a696300cdf9398263e3ffc5e886ec2b080b17ec2766ecb5772 2024-01-27T23:23:41.051 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:40 smithi073 systemd[1]: Started Ceph mon.smithi073 for 0959bd62-bd6b-11ee-95b2-87774f69a715. 2024-01-27T23:23:41.051 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:40 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32363]: cluster 2024-01-27T23:23:40.920441+0000 mon.smithi073 (mon.0) 0 : [INF] mkfs 0959bd62-bd6b-11ee-95b2-87774f69a715 2024-01-27T23:23:41.051 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:40 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32363]: cluster 2024-01-27T23:23:40.893299+0000 mon.smithi073 (mon.0) 1 : cluster [INF] mon.smithi073 is new leader, mons smithi073 in quorum (ranks 0) 2024-01-27T23:23:41.346 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: cluster: 2024-01-27T23:23:41.346 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: id: 0959bd62-bd6b-11ee-95b2-87774f69a715 2024-01-27T23:23:41.346 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: health: HEALTH_OK 2024-01-27T23:23:41.346 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: 2024-01-27T23:23:41.346 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: services: 2024-01-27T23:23:41.346 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: mon: 1 daemons, quorum smithi073 (age 0.439064s) 2024-01-27T23:23:41.346 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: mgr: no daemons active 2024-01-27T23:23:41.347 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: osd: 0 osds: 0 up, 0 in 2024-01-27T23:23:41.347 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: 2024-01-27T23:23:41.347 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: data: 2024-01-27T23:23:41.347 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: pools: 0 pools, 0 pgs 2024-01-27T23:23:41.347 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: objects: 0 objects, 0 B 2024-01-27T23:23:41.347 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: usage: 0 B used, 0 B / 0 B avail 2024-01-27T23:23:41.347 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: pgs: 2024-01-27T23:23:41.347 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: 2024-01-27T23:23:41.688 INFO:teuthology.orchestra.run.smithi073.stderr:mon is available 2024-01-27T23:23:41.688 INFO:teuthology.orchestra.run.smithi073.stderr:Assimilating anything we can from ceph.conf... 2024-01-27T23:23:42.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:41 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32363]: cluster 2024-01-27T23:23:40.917230+0000 mon.smithi073 (mon.0) 2 : cluster [INF] mon.smithi073 is new leader, mons smithi073 in quorum (ranks 0) 2024-01-27T23:23:42.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:41 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32363]: cluster 2024-01-27T23:23:40.917469+0000 mon.smithi073 (mon.0) 3 : cluster [DBG] monmap e1: 1 mons at {smithi073=[v2:172.21.15.73:3300/0,v1:172.21.15.73:6789/0]} removed_ranks: {} 2024-01-27T23:23:42.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:41 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32363]: cluster 2024-01-27T23:23:40.926169+0000 mon.smithi073 (mon.0) 4 : cluster [DBG] fsmap 2024-01-27T23:23:42.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:41 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32363]: cluster 2024-01-27T23:23:40.934782+0000 mon.smithi073 (mon.0) 5 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-01-27T23:23:42.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:41 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32363]: cluster 2024-01-27T23:23:40.935298+0000 mon.smithi073 (mon.0) 6 : cluster [DBG] mgrmap e1: no daemons active 2024-01-27T23:23:42.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:41 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32363]: audit 2024-01-27T23:23:41.356250+0000 mon.smithi073 (mon.0) 7 : audit [DBG] from='client.? 172.21.15.73:0/4247161262' entity='client.admin' cmd=[{"prefix": "status"}]: dispatch 2024-01-27T23:23:42.129 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: 2024-01-27T23:23:42.129 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: [global] 2024-01-27T23:23:42.129 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: fsid = 0959bd62-bd6b-11ee-95b2-87774f69a715 2024-01-27T23:23:42.129 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: mon_host = [v2:172.21.15.73:3300,v1:172.21.15.73:6789] 2024-01-27T23:23:42.129 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: mon_osd_allow_pg_remap = true 2024-01-27T23:23:42.129 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: mon_osd_allow_primary_affinity = true 2024-01-27T23:23:42.129 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: mon_warn_on_no_sortbitwise = false 2024-01-27T23:23:42.129 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: osd_crush_chooseleaf_type = 0 2024-01-27T23:23:42.129 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: 2024-01-27T23:23:42.129 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: [mgr] 2024-01-27T23:23:42.129 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: mgr/telemetry/nag = false 2024-01-27T23:23:42.129 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: 2024-01-27T23:23:42.130 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: [osd] 2024-01-27T23:23:42.130 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: osd_map_max_advance = 10 2024-01-27T23:23:42.130 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: osd_sloppy_crc = true 2024-01-27T23:23:42.460 INFO:teuthology.orchestra.run.smithi073.stderr:Generating new minimal ceph.conf... 2024-01-27T23:23:43.203 INFO:teuthology.orchestra.run.smithi073.stderr:Restarting the monitor... 2024-01-27T23:23:43.210 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:42 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32363]: audit 2024-01-27T23:23:42.136171+0000 mon.smithi073 (mon.0) 8 : audit [INF] from='client.? 172.21.15.73:0/3072940548' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-01-27T23:23:43.210 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:42 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32363]: audit 2024-01-27T23:23:42.138786+0000 mon.smithi073 (mon.0) 9 : audit [INF] from='client.? 172.21.15.73:0/3072940548' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-01-27T23:23:43.210 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:42 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32363]: audit 2024-01-27T23:23:42.861521+0000 mon.smithi073 (mon.0) 10 : audit [DBG] from='client.? 172.21.15.73:0/2181780618' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:23:43.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:43 smithi073 systemd[1]: Stopping Ceph mon.smithi073 for 0959bd62-bd6b-11ee-95b2-87774f69a715... 2024-01-27T23:23:43.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:43 smithi073 bash[32687]: Error: no container with name or ID "ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon.smithi073" found: no such container 2024-01-27T23:23:43.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:43 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32363]: debug 2024-01-27T23:23:43.432+0000 7f9d22faf700 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.smithi073 -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 2024-01-27T23:23:43.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:43 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32363]: debug 2024-01-27T23:23:43.432+0000 7f9d22faf700 -1 mon.smithi073@0(leader) e1 *** Got Signal Terminated *** 2024-01-27T23:23:44.007 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:43 smithi073 bash[32727]: ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073 2024-01-27T23:23:44.285 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 systemd[1]: ceph-0959bd62-bd6b-11ee-95b2-87774f69a715@mon.smithi073.service: Succeeded. 2024-01-27T23:23:44.285 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 systemd[1]: Stopped Ceph mon.smithi073 for 0959bd62-bd6b-11ee-95b2-87774f69a715. 2024-01-27T23:23:44.285 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 systemd[1]: Starting Ceph mon.smithi073 for 0959bd62-bd6b-11ee-95b2-87774f69a715... 2024-01-27T23:23:44.353 INFO:teuthology.orchestra.run.smithi073.stderr:Setting public_network to 172.21.0.0/20 in mon config section 2024-01-27T23:23:44.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.351+0000 7fa8959e5880 0 set uid:gid to 167:167 (ceph:ceph) 2024-01-27T23:23:44.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.351+0000 7fa8959e5880 0 ceph version 16.2.14-508-ga72a5dac (a72a5dace2353a54147d37bd2699a2a482507966) pacific (stable), process ceph-mon, pid 7 2024-01-27T23:23:44.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.351+0000 7fa8959e5880 0 pidfile_write: ignore empty --pid-file 2024-01-27T23:23:44.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.355+0000 7fa8959e5880 0 load: jerasure load: lrc load: isa 2024-01-27T23:23:44.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: RocksDB version: 6.8.1 2024-01-27T23:23:44.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 2024-01-27T23:23:44.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Git sha rocksdb_build_git_sha:@0@ 2024-01-27T23:23:44.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Compile date Jan 25 2024 2024-01-27T23:23:44.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: DB SUMMARY 2024-01-27T23:23:44.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 2024-01-27T23:23:44.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: CURRENT file: CURRENT 2024-01-27T23:23:44.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 2024-01-27T23:23:44.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: IDENTITY file: IDENTITY 2024-01-27T23:23:44.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 2024-01-27T23:23:44.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: MANIFEST file: MANIFEST-000005 size: 131 Bytes 2024-01-27T23:23:44.805 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 2024-01-27T23:23:44.805 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi073/store.db dir, Total Num: 1, files: 000004.sst 2024-01-27T23:23:44.805 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 2024-01-27T23:23:44.805 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi073/store.db: 000006.log size: 81724 ; 2024-01-27T23:23:44.805 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 2024-01-27T23:23:44.805 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.error_if_exists: 0 2024-01-27T23:23:44.805 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.create_if_missing: 0 2024-01-27T23:23:44.805 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.paranoid_checks: 1 2024-01-27T23:23:44.805 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.env: 0x55cf7a8e2080 2024-01-27T23:23:44.805 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.fs: Posix File System 2024-01-27T23:23:44.805 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.info_log: 0x55cf7c819d20 2024-01-27T23:23:44.805 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.max_file_opening_threads: 16 2024-01-27T23:23:44.805 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.statistics: (nil) 2024-01-27T23:23:44.805 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.use_fsync: 0 2024-01-27T23:23:44.806 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.max_log_file_size: 0 2024-01-27T23:23:44.806 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-01-27T23:23:44.806 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.log_file_time_to_roll: 0 2024-01-27T23:23:44.806 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.keep_log_file_num: 1000 2024-01-27T23:23:44.806 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.recycle_log_file_num: 0 2024-01-27T23:23:44.806 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.allow_fallocate: 1 2024-01-27T23:23:44.806 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.allow_mmap_reads: 0 2024-01-27T23:23:44.806 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.allow_mmap_writes: 0 2024-01-27T23:23:44.806 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.use_direct_reads: 0 2024-01-27T23:23:44.806 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-01-27T23:23:44.806 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.create_missing_column_families: 0 2024-01-27T23:23:44.806 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.db_log_dir: 2024-01-27T23:23:44.806 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.wal_dir: /var/lib/ceph/mon/ceph-smithi073/store.db 2024-01-27T23:23:44.806 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.table_cache_numshardbits: 6 2024-01-27T23:23:44.806 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.max_subcompactions: 1 2024-01-27T23:23:44.808 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.max_background_flushes: -1 2024-01-27T23:23:44.808 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-01-27T23:23:44.808 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-01-27T23:23:44.808 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-01-27T23:23:44.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-01-27T23:23:44.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-01-27T23:23:44.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.advise_random_on_open: 1 2024-01-27T23:23:44.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.db_write_buffer_size: 0 2024-01-27T23:23:44.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.write_buffer_manager: 0x55cf7d470480 2024-01-27T23:23:44.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-01-27T23:23:44.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.new_table_reader_for_compaction_inputs: 0 2024-01-27T23:23:44.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-01-27T23:23:44.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.use_adaptive_mutex: 0 2024-01-27T23:23:44.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.rate_limiter: (nil) 2024-01-27T23:23:44.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-01-27T23:23:44.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.wal_recovery_mode: 2 2024-01-27T23:23:44.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.enable_thread_tracking: 0 2024-01-27T23:23:44.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.enable_pipelined_write: 0 2024-01-27T23:23:44.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.unordered_write: 0 2024-01-27T23:23:44.810 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-01-27T23:23:44.810 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-01-27T23:23:44.810 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-01-27T23:23:44.810 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-01-27T23:23:44.810 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.row_cache: None 2024-01-27T23:23:44.810 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.wal_filter: None 2024-01-27T23:23:44.810 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-01-27T23:23:44.810 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.allow_ingest_behind: 0 2024-01-27T23:23:44.810 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.preserve_deletes: 0 2024-01-27T23:23:44.810 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.two_write_queues: 0 2024-01-27T23:23:44.810 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.manual_wal_flush: 0 2024-01-27T23:23:44.810 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.atomic_flush: 0 2024-01-27T23:23:44.810 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-01-27T23:23:44.810 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.persist_stats_to_disk: 0 2024-01-27T23:23:44.811 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-01-27T23:23:44.811 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.log_readahead_size: 0 2024-01-27T23:23:44.811 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.sst_file_checksum_func: Unknown 2024-01-27T23:23:44.811 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.max_background_jobs: 2 2024-01-27T23:23:44.811 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.max_background_compactions: -1 2024-01-27T23:23:44.811 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-01-27T23:23:44.811 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-01-27T23:23:44.811 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.delayed_write_rate : 16777216 2024-01-27T23:23:44.811 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.max_total_wal_size: 0 2024-01-27T23:23:44.811 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-01-27T23:23:44.811 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.stats_dump_period_sec: 600 2024-01-27T23:23:44.811 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.stats_persist_period_sec: 600 2024-01-27T23:23:44.811 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-01-27T23:23:44.811 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.max_open_files: -1 2024-01-27T23:23:44.812 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.bytes_per_sync: 0 2024-01-27T23:23:44.812 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-01-27T23:23:44.812 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-01-27T23:23:44.812 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.compaction_readahead_size: 0 2024-01-27T23:23:44.812 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Compression algorithms supported: 2024-01-27T23:23:44.812 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-01-27T23:23:44.812 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: kZSTD supported: 0 2024-01-27T23:23:44.812 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: kXpressCompression supported: 0 2024-01-27T23:23:44.812 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 bash[32848]: ab9d741c9a2457dcf4d27ed6feffda43959079b1704840cace5220054cf4326e 2024-01-27T23:23:44.812 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: kLZ4HCCompression supported: 1 2024-01-27T23:23:44.812 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: kLZ4Compression supported: 1 2024-01-27T23:23:44.812 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: kBZip2Compression supported: 0 2024-01-27T23:23:44.812 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: kZlibCompression supported: 1 2024-01-27T23:23:44.812 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: kSnappyCompression supported: 1 2024-01-27T23:23:44.813 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-01-27T23:23:44.813 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: [version_set.cc:4413] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi073/store.db/MANIFEST-000005 2024-01-27T23:23:44.813 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 2024-01-27T23:23:44.813 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: [column_family.cc:552] --------------- Options for column family [default]: 2024-01-27T23:23:44.813 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 2024-01-27T23:23:44.813 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-01-27T23:23:44.813 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.merge_operator: 2024-01-27T23:23:44.813 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.compaction_filter: None 2024-01-27T23:23:44.813 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.compaction_filter_factory: None 2024-01-27T23:23:44.813 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-01-27T23:23:44.813 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.table_factory: BlockBasedTable 2024-01-27T23:23:44.813 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55cf7c7c9d28) 2024-01-27T23:23:44.813 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cache_index_and_filter_blocks: 1 2024-01-27T23:23:44.813 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cache_index_and_filter_blocks_with_high_priority: 0 2024-01-27T23:23:44.813 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-01-27T23:23:44.814 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: pin_top_level_index_and_filter: 1 2024-01-27T23:23:44.814 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: index_type: 0 2024-01-27T23:23:44.814 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: data_block_index_type: 0 2024-01-27T23:23:44.814 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: index_shortening: 1 2024-01-27T23:23:44.814 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: data_block_hash_table_util_ratio: 0.750000 2024-01-27T23:23:44.814 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: hash_index_allow_collision: 1 2024-01-27T23:23:44.814 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: checksum: 1 2024-01-27T23:23:44.814 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: no_block_cache: 0 2024-01-27T23:23:44.814 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: block_cache: 0x55cf7c7fef10 2024-01-27T23:23:44.814 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: block_cache_name: BinnedLRUCache 2024-01-27T23:23:44.814 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: block_cache_options: 2024-01-27T23:23:44.814 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: capacity : 536870912 2024-01-27T23:23:44.814 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: num_shard_bits : 4 2024-01-27T23:23:44.814 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: strict_capacity_limit : 0 2024-01-27T23:23:44.815 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: high_pri_pool_ratio: 0.000 2024-01-27T23:23:44.815 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: block_cache_compressed: (nil) 2024-01-27T23:23:44.815 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: persistent_cache: (nil) 2024-01-27T23:23:44.815 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: block_size: 4096 2024-01-27T23:23:44.815 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: block_size_deviation: 10 2024-01-27T23:23:44.815 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: block_restart_interval: 16 2024-01-27T23:23:44.815 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: index_block_restart_interval: 1 2024-01-27T23:23:44.815 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: metadata_block_size: 4096 2024-01-27T23:23:44.815 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: partition_filters: 0 2024-01-27T23:23:44.816 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: use_delta_encoding: 1 2024-01-27T23:23:44.816 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: filter_policy: rocksdb.BuiltinBloomFilter 2024-01-27T23:23:44.816 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: whole_key_filtering: 1 2024-01-27T23:23:44.816 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: verify_compression: 0 2024-01-27T23:23:44.816 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: read_amp_bytes_per_bit: 0 2024-01-27T23:23:44.816 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: format_version: 2 2024-01-27T23:23:44.816 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: enable_index_compression: 1 2024-01-27T23:23:44.816 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: block_align: 0 2024-01-27T23:23:44.816 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 2024-01-27T23:23:44.816 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.write_buffer_size: 33554432 2024-01-27T23:23:44.816 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.max_write_buffer_number: 2 2024-01-27T23:23:44.816 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.compression: NoCompression 2024-01-27T23:23:44.817 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.bottommost_compression: Disabled 2024-01-27T23:23:44.817 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.prefix_extractor: nullptr 2024-01-27T23:23:44.817 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-01-27T23:23:44.817 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.num_levels: 7 2024-01-27T23:23:44.817 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-01-27T23:23:44.817 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-01-27T23:23:44.817 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-01-27T23:23:44.817 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-01-27T23:23:44.817 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-01-27T23:23:44.817 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-01-27T23:23:44.817 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-01-27T23:23:44.818 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-01-27T23:23:44.818 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-01-27T23:23:44.818 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.compression_opts.window_bits: -14 2024-01-27T23:23:44.818 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.compression_opts.level: 32767 2024-01-27T23:23:44.818 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.compression_opts.strategy: 0 2024-01-27T23:23:44.818 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-01-27T23:23:44.818 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-01-27T23:23:44.818 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.compression_opts.enabled: false 2024-01-27T23:23:44.818 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-01-27T23:23:44.818 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-01-27T23:23:44.818 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-01-27T23:23:44.818 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.target_file_size_base: 67108864 2024-01-27T23:23:44.818 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.target_file_size_multiplier: 1 2024-01-27T23:23:44.818 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-01-27T23:23:44.819 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-01-27T23:23:44.819 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-01-27T23:23:44.819 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-01-27T23:23:44.819 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-01-27T23:23:44.819 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-01-27T23:23:44.819 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-01-27T23:23:44.819 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-01-27T23:23:44.819 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-01-27T23:23:44.819 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-01-27T23:23:44.819 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-01-27T23:23:44.819 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-01-27T23:23:44.819 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.arena_block_size: 4194304 2024-01-27T23:23:44.819 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-01-27T23:23:44.819 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-01-27T23:23:44.820 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.rate_limit_delay_max_milliseconds: 100 2024-01-27T23:23:44.820 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.disable_auto_compactions: 0 2024-01-27T23:23:44.820 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-01-27T23:23:44.820 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-01-27T23:23:44.820 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-01-27T23:23:44.820 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-01-27T23:23:44.820 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-01-27T23:23:44.820 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-01-27T23:23:44.820 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-01-27T23:23:44.820 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-01-27T23:23:44.820 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-01-27T23:23:44.820 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-01-27T23:23:44.820 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.table_properties_collectors: 2024-01-27T23:23:44.820 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.inplace_update_support: 0 2024-01-27T23:23:44.821 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-01-27T23:23:44.821 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-01-27T23:23:44.821 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-01-27T23:23:44.821 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.memtable_huge_page_size: 0 2024-01-27T23:23:44.821 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.bloom_locality: 0 2024-01-27T23:23:44.821 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.max_successive_merges: 0 2024-01-27T23:23:44.821 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-01-27T23:23:44.821 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.paranoid_file_checks: 0 2024-01-27T23:23:44.821 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.force_consistency_checks: 0 2024-01-27T23:23:44.821 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.report_bg_io_stats: 0 2024-01-27T23:23:44.821 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.ttl: 2592000 2024-01-27T23:23:44.821 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.356+0000 7fa8959e5880 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-01-27T23:23:44.821 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.357+0000 7fa8959e5880 4 rocksdb: [version_set.cc:4568] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi073/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 2024-01-27T23:23:44.822 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 2024-01-27T23:23:44.822 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.357+0000 7fa8959e5880 4 rocksdb: [version_set.cc:4577] Column family [default] (ID 0), log number is 4 2024-01-27T23:23:44.822 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 2024-01-27T23:23:44.822 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.357+0000 7fa8959e5880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1706397824358328, "job": 1, "event": "recovery_started", "log_files": [6]} 2024-01-27T23:23:44.822 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.357+0000 7fa8959e5880 4 rocksdb: [db_impl/db_impl_open.cc:760] Recovering log #6 mode 2 2024-01-27T23:23:44.822 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.357+0000 7fa8959e5880 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. 2024-01-27T23:23:44.822 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.358+0000 7fa8959e5880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1706397824359116, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 7, "file_size": 78727, "table_properties": {"data_size": 77021, "index_size": 311, "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": 9283, "raw_average_key_size": 47, "raw_value_size": 71591, "raw_average_value_size": 367, "num_data_blocks": 10, "num_entries": 195, "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": 1706397824, "oldest_key_time": 3, "file_creation_time": 0}} 2024-01-27T23:23:44.822 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.358+0000 7fa8959e5880 4 rocksdb: [version_set.cc:3826] Creating manifest 8 2024-01-27T23:23:44.822 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 2024-01-27T23:23:44.822 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.358+0000 7fa8959e5880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1706397824359537, "job": 1, "event": "recovery_finished"} 2024-01-27T23:23:44.822 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.359+0000 7fa8959e5880 4 rocksdb: DB pointer 0x55cf7c8c7800 2024-01-27T23:23:44.822 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.359+0000 7fa87c7d7700 4 rocksdb: [db_impl/db_impl.cc:850] ------- DUMPING STATS ------- 2024-01-27T23:23:44.822 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.359+0000 7fa87c7d7700 4 rocksdb: [db_impl/db_impl.cc:851] 2024-01-27T23:23:44.822 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: ** DB Stats ** 2024-01-27T23:23:44.822 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Uptime(secs): 0.0 total, 0.0 interval 2024-01-27T23:23:44.823 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-01-27T23:23:44.823 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-01-27T23:23:44.823 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-01-27T23:23:44.823 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-01-27T23:23:44.823 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 MB, 0.00 MB/s 2024-01-27T23:23:44.823 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-01-27T23:23:44.823 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 2024-01-27T23:23:44.823 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: ** Compaction Stats [default] ** 2024-01-27T23:23:44.823 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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 2024-01-27T23:23:44.823 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-01-27T23:23:44.823 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: L0 2/0 78.57 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 136.0 0.00 0.00 1 0.001 0 0 2024-01-27T23:23:44.823 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Sum 2/0 78.57 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 136.0 0.00 0.00 1 0.001 0 0 2024-01-27T23:23:44.823 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 136.0 0.00 0.00 1 0.001 0 0 2024-01-27T23:23:44.823 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 2024-01-27T23:23:44.824 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: ** Compaction Stats [default] ** 2024-01-27T23:23:44.824 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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 2024-01-27T23:23:44.824 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-01-27T23:23:44.824 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 136.0 0.00 0.00 1 0.001 0 0 2024-01-27T23:23:44.824 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Uptime(secs): 0.0 total, 0.0 interval 2024-01-27T23:23:44.824 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Flush(GB): cumulative 0.000, interval 0.000 2024-01-27T23:23:44.824 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: AddFile(GB): cumulative 0.000, interval 0.000 2024-01-27T23:23:44.824 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: AddFile(Total Files): cumulative 0, interval 0 2024-01-27T23:23:44.824 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: AddFile(L0 Files): cumulative 0, interval 0 2024-01-27T23:23:44.824 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: AddFile(Keys): cumulative 0, interval 0 2024-01-27T23:23:44.824 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Cumulative compaction: 0.00 GB write, 28.07 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-01-27T23:23:44.824 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Interval compaction: 0.00 GB write, 28.07 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-01-27T23:23:44.824 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-01-27T23:23:44.825 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 2024-01-27T23:23:44.825 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: ** File Read Latency Histogram By Level [default] ** 2024-01-27T23:23:44.825 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 2024-01-27T23:23:44.825 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: ** Compaction Stats [default] ** 2024-01-27T23:23:44.825 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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 2024-01-27T23:23:44.825 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-01-27T23:23:44.825 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: L0 2/0 78.57 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 136.0 0.00 0.00 1 0.001 0 0 2024-01-27T23:23:44.825 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Sum 2/0 78.57 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 136.0 0.00 0.00 1 0.001 0 0 2024-01-27T23:23:44.825 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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 2024-01-27T23:23:44.825 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 2024-01-27T23:23:44.825 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: ** Compaction Stats [default] ** 2024-01-27T23:23:44.825 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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 2024-01-27T23:23:44.825 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-01-27T23:23:44.826 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 136.0 0.00 0.00 1 0.001 0 0 2024-01-27T23:23:44.826 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Uptime(secs): 0.0 total, 0.0 interval 2024-01-27T23:23:44.826 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Flush(GB): cumulative 0.000, interval 0.000 2024-01-27T23:23:44.826 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: AddFile(GB): cumulative 0.000, interval 0.000 2024-01-27T23:23:44.826 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: AddFile(Total Files): cumulative 0, interval 0 2024-01-27T23:23:44.826 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: AddFile(L0 Files): cumulative 0, interval 0 2024-01-27T23:23:44.826 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: AddFile(Keys): cumulative 0, interval 0 2024-01-27T23:23:44.826 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Cumulative compaction: 0.00 GB write, 27.78 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-01-27T23:23:44.826 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-01-27T23:23:44.826 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-01-27T23:23:44.826 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 2024-01-27T23:23:44.827 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: ** File Read Latency Histogram By Level [default] ** 2024-01-27T23:23:44.827 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 2024-01-27T23:23:44.827 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.360+0000 7fa8959e5880 0 starting mon.smithi073 rank 0 at public addrs [v2:172.21.15.73:3300/0,v1:172.21.15.73:6789/0] at bind addrs [v2:172.21.15.73:3300/0,v1:172.21.15.73:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi073 fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 2024-01-27T23:23:44.827 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.361+0000 7fa8959e5880 1 mon.smithi073@-1(???) e1 preinit fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 2024-01-27T23:23:44.827 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.361+0000 7fa8959e5880 0 mon.smithi073@-1(???).mds e1 new map 2024-01-27T23:23:44.827 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.361+0000 7fa8959e5880 0 mon.smithi073@-1(???).mds e1 print_map 2024-01-27T23:23:44.827 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: e1 2024-01-27T23:23:44.827 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: enable_multiple, ever_enabled_multiple: 1,1 2024-01-27T23:23:44.827 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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} 2024-01-27T23:23:44.827 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: legacy client fscid: -1 2024-01-27T23:23:44.827 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 2024-01-27T23:23:44.827 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: No filesystems configured 2024-01-27T23:23:44.827 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 2024-01-27T23:23:44.827 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.361+0000 7fa8959e5880 0 mon.smithi073@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-01-27T23:23:44.828 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.361+0000 7fa8959e5880 0 mon.smithi073@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-01-27T23:23:44.828 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.361+0000 7fa8959e5880 0 mon.smithi073@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-01-27T23:23:44.828 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.361+0000 7fa8959e5880 0 mon.smithi073@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-01-27T23:23:44.828 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:23:42.136171+0000 mon.smithi073 (mon.0) 8 : audit [INF] from='client.? 172.21.15.73:0/3072940548' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-01-27T23:23:44.828 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:23:42.138786+0000 mon.smithi073 (mon.0) 9 : audit [INF] from='client.? 172.21.15.73:0/3072940548' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-01-27T23:23:44.828 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:23:42.861521+0000 mon.smithi073 (mon.0) 10 : audit [DBG] from='client.? 172.21.15.73:0/2181780618' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:23:44.828 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:23:44.361+0000 7fa8959e5880 1 mon.smithi073@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-01-27T23:23:44.828 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 systemd[1]: Started Ceph mon.smithi073 for 0959bd62-bd6b-11ee-95b2-87774f69a715. 2024-01-27T23:23:44.828 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:23:44.378458+0000 mon.smithi073 (mon.0) 1 : cluster [INF] mon.smithi073 is new leader, mons smithi073 in quorum (ranks 0) 2024-01-27T23:23:44.828 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:23:44.378538+0000 mon.smithi073 (mon.0) 2 : cluster [DBG] monmap e1: 1 mons at {smithi073=[v2:172.21.15.73:3300/0,v1:172.21.15.73:6789/0]} removed_ranks: {} 2024-01-27T23:23:44.828 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:23:44.378970+0000 mon.smithi073 (mon.0) 3 : cluster [DBG] fsmap 2024-01-27T23:23:44.828 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:23:44.379015+0000 mon.smithi073 (mon.0) 4 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-01-27T23:23:44.829 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:23:44.379473+0000 mon.smithi073 (mon.0) 5 : cluster [DBG] mgrmap e1: no daemons active 2024-01-27T23:23:45.360 INFO:teuthology.orchestra.run.smithi073.stderr:Wrote config to /etc/ceph/ceph.conf 2024-01-27T23:23:45.360 INFO:teuthology.orchestra.run.smithi073.stderr:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-01-27T23:23:45.360 INFO:teuthology.orchestra.run.smithi073.stderr:Creating mgr... 2024-01-27T23:23:45.364 INFO:teuthology.orchestra.run.smithi073.stderr:Verifying port 9283 ... 2024-01-27T23:23:45.486 INFO:teuthology.orchestra.run.smithi073.stderr:systemctl: Failed to reset failed state of unit ceph-0959bd62-bd6b-11ee-95b2-87774f69a715@mgr.smithi073.msdoog.service: Unit ceph-0959bd62-bd6b-11ee-95b2-87774f69a715@mgr.smithi073.msdoog.service not loaded. 2024-01-27T23:23:45.491 INFO:teuthology.orchestra.run.smithi073.stderr:systemctl: Created symlink /etc/systemd/system/ceph-0959bd62-bd6b-11ee-95b2-87774f69a715.target.wants/ceph-0959bd62-bd6b-11ee-95b2-87774f69a715@mgr.smithi073.msdoog.service → /etc/systemd/system/ceph-0959bd62-bd6b-11ee-95b2-87774f69a715@.service. 2024-01-27T23:23:45.979 INFO:teuthology.orchestra.run.smithi073.stderr:systemctl: disabled 2024-01-27T23:23:45.986 INFO:teuthology.orchestra.run.smithi073.stderr:systemctl: inactive 2024-01-27T23:23:45.987 INFO:teuthology.orchestra.run.smithi073.stderr:firewalld.service is not enabled 2024-01-27T23:23:45.987 INFO:teuthology.orchestra.run.smithi073.stderr:Not possible to enable service . firewalld.service is not available 2024-01-27T23:23:45.995 INFO:teuthology.orchestra.run.smithi073.stderr:systemctl: disabled 2024-01-27T23:23:46.003 INFO:teuthology.orchestra.run.smithi073.stderr:systemctl: inactive 2024-01-27T23:23:46.003 INFO:teuthology.orchestra.run.smithi073.stderr:firewalld.service is not enabled 2024-01-27T23:23:46.004 INFO:teuthology.orchestra.run.smithi073.stderr:Not possible to open ports <[9283]>. firewalld.service is not available 2024-01-27T23:23:46.004 INFO:teuthology.orchestra.run.smithi073.stderr:Waiting for mgr to start... 2024-01-27T23:23:46.004 INFO:teuthology.orchestra.run.smithi073.stderr:Waiting for mgr... 2024-01-27T23:23:46.303 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:23:45.031389+0000 mon.smithi073 (mon.0) 6 : audit [INF] from='client.? 172.21.15.73:0/2361231316' entity='client.admin' 2024-01-27T23:23:46.440 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: 2024-01-27T23:23:46.440 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: { 2024-01-27T23:23:46.441 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "fsid": "0959bd62-bd6b-11ee-95b2-87774f69a715", 2024-01-27T23:23:46.441 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "health": { 2024-01-27T23:23:46.441 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "status": "HEALTH_OK", 2024-01-27T23:23:46.441 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "checks": {}, 2024-01-27T23:23:46.441 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "mutes": [] 2024-01-27T23:23:46.441 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: }, 2024-01-27T23:23:46.441 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "election_epoch": 5, 2024-01-27T23:23:46.441 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "quorum": [ 2024-01-27T23:23:46.441 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: 0 2024-01-27T23:23:46.441 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: ], 2024-01-27T23:23:46.441 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "quorum_names": [ 2024-01-27T23:23:46.441 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "smithi073" 2024-01-27T23:23:46.441 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: ], 2024-01-27T23:23:46.441 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "quorum_age": 2, 2024-01-27T23:23:46.441 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "monmap": { 2024-01-27T23:23:46.442 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-27T23:23:46.442 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "min_mon_release_name": "pacific", 2024-01-27T23:23:46.442 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "num_mons": 1 2024-01-27T23:23:46.442 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: }, 2024-01-27T23:23:46.442 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "osdmap": { 2024-01-27T23:23:46.442 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-27T23:23:46.442 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "num_osds": 0, 2024-01-27T23:23:46.442 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "num_up_osds": 0, 2024-01-27T23:23:46.442 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "osd_up_since": 0, 2024-01-27T23:23:46.442 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "num_in_osds": 0, 2024-01-27T23:23:46.442 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "osd_in_since": 0, 2024-01-27T23:23:46.442 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "num_remapped_pgs": 0 2024-01-27T23:23:46.442 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: }, 2024-01-27T23:23:46.442 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "pgmap": { 2024-01-27T23:23:46.442 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "pgs_by_state": [], 2024-01-27T23:23:46.443 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "num_pgs": 0, 2024-01-27T23:23:46.443 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "num_pools": 0, 2024-01-27T23:23:46.443 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "num_objects": 0, 2024-01-27T23:23:46.443 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "data_bytes": 0, 2024-01-27T23:23:46.443 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "bytes_used": 0, 2024-01-27T23:23:46.443 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "bytes_avail": 0, 2024-01-27T23:23:46.443 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "bytes_total": 0 2024-01-27T23:23:46.443 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: }, 2024-01-27T23:23:46.443 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "fsmap": { 2024-01-27T23:23:46.443 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-27T23:23:46.443 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "by_rank": [], 2024-01-27T23:23:46.443 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "up:standby": 0 2024-01-27T23:23:46.443 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: }, 2024-01-27T23:23:46.443 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "mgrmap": { 2024-01-27T23:23:46.443 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "available": false, 2024-01-27T23:23:46.443 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "num_standbys": 0, 2024-01-27T23:23:46.444 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "modules": [ 2024-01-27T23:23:46.444 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "iostat", 2024-01-27T23:23:46.444 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "nfs", 2024-01-27T23:23:46.444 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "restful" 2024-01-27T23:23:46.444 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: ], 2024-01-27T23:23:46.444 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "services": {} 2024-01-27T23:23:46.444 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: }, 2024-01-27T23:23:46.444 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "servicemap": { 2024-01-27T23:23:46.444 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-27T23:23:46.444 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "modified": "2024-01-27T23:23:40.920874+0000", 2024-01-27T23:23:46.444 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "services": {} 2024-01-27T23:23:46.444 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: }, 2024-01-27T23:23:46.444 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "progress_events": {} 2024-01-27T23:23:46.444 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: } 2024-01-27T23:23:46.736 INFO:teuthology.orchestra.run.smithi073.stderr:mgr not available, waiting (1/15)... 2024-01-27T23:23:47.284 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:47 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:23:46.445594+0000 mon.smithi073 (mon.0) 7 : audit [DBG] from='client.? 172.21.15.73:0/156727199' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-01-27T23:23:49.139 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: 2024-01-27T23:23:49.139 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: { 2024-01-27T23:23:49.139 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "fsid": "0959bd62-bd6b-11ee-95b2-87774f69a715", 2024-01-27T23:23:49.139 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "health": { 2024-01-27T23:23:49.140 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "status": "HEALTH_OK", 2024-01-27T23:23:49.140 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "checks": {}, 2024-01-27T23:23:49.140 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "mutes": [] 2024-01-27T23:23:49.140 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: }, 2024-01-27T23:23:49.140 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "election_epoch": 5, 2024-01-27T23:23:49.140 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "quorum": [ 2024-01-27T23:23:49.140 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: 0 2024-01-27T23:23:49.140 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: ], 2024-01-27T23:23:49.140 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "quorum_names": [ 2024-01-27T23:23:49.140 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "smithi073" 2024-01-27T23:23:49.140 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: ], 2024-01-27T23:23:49.140 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "quorum_age": 4, 2024-01-27T23:23:49.141 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "monmap": { 2024-01-27T23:23:49.141 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-27T23:23:49.141 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "min_mon_release_name": "pacific", 2024-01-27T23:23:49.141 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "num_mons": 1 2024-01-27T23:23:49.141 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: }, 2024-01-27T23:23:49.141 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "osdmap": { 2024-01-27T23:23:49.141 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-27T23:23:49.141 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "num_osds": 0, 2024-01-27T23:23:49.141 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "num_up_osds": 0, 2024-01-27T23:23:49.141 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "osd_up_since": 0, 2024-01-27T23:23:49.145 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "num_in_osds": 0, 2024-01-27T23:23:49.145 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "osd_in_since": 0, 2024-01-27T23:23:49.145 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "num_remapped_pgs": 0 2024-01-27T23:23:49.145 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: }, 2024-01-27T23:23:49.145 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "pgmap": { 2024-01-27T23:23:49.145 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "pgs_by_state": [], 2024-01-27T23:23:49.145 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "num_pgs": 0, 2024-01-27T23:23:49.145 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "num_pools": 0, 2024-01-27T23:23:49.145 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "num_objects": 0, 2024-01-27T23:23:49.145 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "data_bytes": 0, 2024-01-27T23:23:49.145 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "bytes_used": 0, 2024-01-27T23:23:49.145 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "bytes_avail": 0, 2024-01-27T23:23:49.145 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "bytes_total": 0 2024-01-27T23:23:49.146 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: }, 2024-01-27T23:23:49.146 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "fsmap": { 2024-01-27T23:23:49.146 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-27T23:23:49.146 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "by_rank": [], 2024-01-27T23:23:49.146 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "up:standby": 0 2024-01-27T23:23:49.146 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: }, 2024-01-27T23:23:49.146 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "mgrmap": { 2024-01-27T23:23:49.146 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "available": false, 2024-01-27T23:23:49.146 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "num_standbys": 0, 2024-01-27T23:23:49.146 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "modules": [ 2024-01-27T23:23:49.146 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "iostat", 2024-01-27T23:23:49.146 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "nfs", 2024-01-27T23:23:49.146 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "restful" 2024-01-27T23:23:49.146 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: ], 2024-01-27T23:23:49.146 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "services": {} 2024-01-27T23:23:49.147 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: }, 2024-01-27T23:23:49.147 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "servicemap": { 2024-01-27T23:23:49.147 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-27T23:23:49.147 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "modified": "2024-01-27T23:23:40.920874+0000", 2024-01-27T23:23:49.147 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "services": {} 2024-01-27T23:23:49.147 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: }, 2024-01-27T23:23:49.147 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "progress_events": {} 2024-01-27T23:23:49.147 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: } 2024-01-27T23:23:49.475 INFO:teuthology.orchestra.run.smithi073.stderr:mgr not available, waiting (2/15)... 2024-01-27T23:23:49.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:49 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:23:49.148280+0000 mon.smithi073 (mon.0) 8 : audit [DBG] from='client.? 172.21.15.73:0/1048885492' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-01-27T23:23:51.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:51 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:23:51.260878+0000 mon.smithi073 (mon.0) 9 : cluster [INF] Activating manager daemon smithi073.msdoog 2024-01-27T23:23:51.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:51 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:23:51.263711+0000 mon.smithi073 (mon.0) 10 : cluster [DBG] mgrmap e2: smithi073.msdoog(active, starting, since 0.00294333s) 2024-01-27T23:23:51.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:51 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:23:51.264696+0000 mon.smithi073 (mon.0) 11 : audit [DBG] from='mgr.14100 172.21.15.73:0/1219719278' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-01-27T23:23:51.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:51 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:23:51.264835+0000 mon.smithi073 (mon.0) 12 : audit [DBG] from='mgr.14100 172.21.15.73:0/1219719278' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-01-27T23:23:51.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:51 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:23:51.264938+0000 mon.smithi073 (mon.0) 13 : audit [DBG] from='mgr.14100 172.21.15.73:0/1219719278' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-01-27T23:23:51.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:51 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:23:51.265055+0000 mon.smithi073 (mon.0) 14 : audit [DBG] from='mgr.14100 172.21.15.73:0/1219719278' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "mon metadata", "id": "smithi073"}]: dispatch 2024-01-27T23:23:51.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:51 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:23:51.265282+0000 mon.smithi073 (mon.0) 15 : audit [DBG] from='mgr.14100 172.21.15.73:0/1219719278' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "mgr metadata", "who": "smithi073.msdoog", "id": "smithi073.msdoog"}]: dispatch 2024-01-27T23:23:51.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:51 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:23:51.279280+0000 mon.smithi073 (mon.0) 16 : cluster [INF] Manager daemon smithi073.msdoog is now available 2024-01-27T23:23:51.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:51 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:23:51.292462+0000 mon.smithi073 (mon.0) 17 : audit [INF] from='mgr.14100 172.21.15.73:0/1219719278' entity='mgr.smithi073.msdoog' 2024-01-27T23:23:51.554 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:51 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:23:51.294145+0000 mon.smithi073 (mon.0) 18 : audit [INF] from='mgr.14100 172.21.15.73:0/1219719278' entity='mgr.smithi073.msdoog' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi073.msdoog/mirror_snapshot_schedule"}]: dispatch 2024-01-27T23:23:51.554 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:51 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:23:51.297001+0000 mon.smithi073 (mon.0) 19 : audit [INF] from='mgr.14100 172.21.15.73:0/1219719278' entity='mgr.smithi073.msdoog' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi073.msdoog/trash_purge_schedule"}]: dispatch 2024-01-27T23:23:51.554 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:51 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:23:51.301983+0000 mon.smithi073 (mon.0) 20 : audit [INF] from='mgr.14100 172.21.15.73:0/1219719278' entity='mgr.smithi073.msdoog' 2024-01-27T23:23:51.554 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:51 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:23:51.308118+0000 mon.smithi073 (mon.0) 21 : audit [INF] from='mgr.14100 172.21.15.73:0/1219719278' entity='mgr.smithi073.msdoog' 2024-01-27T23:23:52.042 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: 2024-01-27T23:23:52.042 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: { 2024-01-27T23:23:52.042 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "fsid": "0959bd62-bd6b-11ee-95b2-87774f69a715", 2024-01-27T23:23:52.043 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "health": { 2024-01-27T23:23:52.043 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "status": "HEALTH_OK", 2024-01-27T23:23:52.043 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "checks": {}, 2024-01-27T23:23:52.043 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "mutes": [] 2024-01-27T23:23:52.043 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: }, 2024-01-27T23:23:52.043 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "election_epoch": 5, 2024-01-27T23:23:52.043 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "quorum": [ 2024-01-27T23:23:52.043 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: 0 2024-01-27T23:23:52.043 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: ], 2024-01-27T23:23:52.043 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "quorum_names": [ 2024-01-27T23:23:52.043 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "smithi073" 2024-01-27T23:23:52.043 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: ], 2024-01-27T23:23:52.043 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "quorum_age": 7, 2024-01-27T23:23:52.043 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "monmap": { 2024-01-27T23:23:52.043 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-27T23:23:52.043 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "min_mon_release_name": "pacific", 2024-01-27T23:23:52.044 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "num_mons": 1 2024-01-27T23:23:52.044 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: }, 2024-01-27T23:23:52.044 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "osdmap": { 2024-01-27T23:23:52.044 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-27T23:23:52.044 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "num_osds": 0, 2024-01-27T23:23:52.044 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "num_up_osds": 0, 2024-01-27T23:23:52.044 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "osd_up_since": 0, 2024-01-27T23:23:52.047 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "num_in_osds": 0, 2024-01-27T23:23:52.047 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "osd_in_since": 0, 2024-01-27T23:23:52.047 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "num_remapped_pgs": 0 2024-01-27T23:23:52.047 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: }, 2024-01-27T23:23:52.048 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "pgmap": { 2024-01-27T23:23:52.048 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "pgs_by_state": [], 2024-01-27T23:23:52.048 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "num_pgs": 0, 2024-01-27T23:23:52.048 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "num_pools": 0, 2024-01-27T23:23:52.048 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "num_objects": 0, 2024-01-27T23:23:52.048 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "data_bytes": 0, 2024-01-27T23:23:52.048 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "bytes_used": 0, 2024-01-27T23:23:52.048 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "bytes_avail": 0, 2024-01-27T23:23:52.048 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "bytes_total": 0 2024-01-27T23:23:52.048 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: }, 2024-01-27T23:23:52.048 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "fsmap": { 2024-01-27T23:23:52.048 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-27T23:23:52.048 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "by_rank": [], 2024-01-27T23:23:52.048 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "up:standby": 0 2024-01-27T23:23:52.048 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: }, 2024-01-27T23:23:52.049 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "mgrmap": { 2024-01-27T23:23:52.049 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "available": false, 2024-01-27T23:23:52.049 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "num_standbys": 0, 2024-01-27T23:23:52.049 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "modules": [ 2024-01-27T23:23:52.049 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "iostat", 2024-01-27T23:23:52.049 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "nfs", 2024-01-27T23:23:52.049 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "restful" 2024-01-27T23:23:52.049 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: ], 2024-01-27T23:23:52.049 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "services": {} 2024-01-27T23:23:52.049 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: }, 2024-01-27T23:23:52.049 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "servicemap": { 2024-01-27T23:23:52.049 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-27T23:23:52.049 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "modified": "2024-01-27T23:23:40.920874+0000", 2024-01-27T23:23:52.049 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "services": {} 2024-01-27T23:23:52.049 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: }, 2024-01-27T23:23:52.050 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "progress_events": {} 2024-01-27T23:23:52.050 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: } 2024-01-27T23:23:52.392 INFO:teuthology.orchestra.run.smithi073.stderr:mgr not available, waiting (3/15)... 2024-01-27T23:23:52.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:52 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:23:52.051384+0000 mon.smithi073 (mon.0) 22 : audit [DBG] from='client.? 172.21.15.73:0/1993681977' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-01-27T23:23:52.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:52 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:23:52.265806+0000 mon.smithi073 (mon.0) 23 : cluster [DBG] mgrmap e3: smithi073.msdoog(active, since 1.00504s) 2024-01-27T23:23:54.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:54 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:23:53.318492+0000 mon.smithi073 (mon.0) 24 : cluster [DBG] mgrmap e4: smithi073.msdoog(active, since 2s) 2024-01-27T23:23:54.962 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: 2024-01-27T23:23:54.962 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: { 2024-01-27T23:23:54.963 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "fsid": "0959bd62-bd6b-11ee-95b2-87774f69a715", 2024-01-27T23:23:54.963 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "health": { 2024-01-27T23:23:54.963 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "status": "HEALTH_OK", 2024-01-27T23:23:54.963 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "checks": {}, 2024-01-27T23:23:54.963 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "mutes": [] 2024-01-27T23:23:54.963 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: }, 2024-01-27T23:23:54.963 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "election_epoch": 5, 2024-01-27T23:23:54.963 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "quorum": [ 2024-01-27T23:23:54.963 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: 0 2024-01-27T23:23:54.963 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: ], 2024-01-27T23:23:54.963 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "quorum_names": [ 2024-01-27T23:23:54.963 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "smithi073" 2024-01-27T23:23:54.963 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: ], 2024-01-27T23:23:54.963 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "quorum_age": 10, 2024-01-27T23:23:54.963 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "monmap": { 2024-01-27T23:23:54.963 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-27T23:23:54.964 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "min_mon_release_name": "pacific", 2024-01-27T23:23:54.964 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "num_mons": 1 2024-01-27T23:23:54.964 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: }, 2024-01-27T23:23:54.964 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "osdmap": { 2024-01-27T23:23:54.964 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-27T23:23:54.964 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "num_osds": 0, 2024-01-27T23:23:54.964 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "num_up_osds": 0, 2024-01-27T23:23:54.964 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "osd_up_since": 0, 2024-01-27T23:23:54.968 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "num_in_osds": 0, 2024-01-27T23:23:54.968 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "osd_in_since": 0, 2024-01-27T23:23:54.968 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "num_remapped_pgs": 0 2024-01-27T23:23:54.968 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: }, 2024-01-27T23:23:54.968 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "pgmap": { 2024-01-27T23:23:54.968 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "pgs_by_state": [], 2024-01-27T23:23:54.968 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "num_pgs": 0, 2024-01-27T23:23:54.968 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "num_pools": 0, 2024-01-27T23:23:54.968 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "num_objects": 0, 2024-01-27T23:23:54.968 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "data_bytes": 0, 2024-01-27T23:23:54.968 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "bytes_used": 0, 2024-01-27T23:23:54.968 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "bytes_avail": 0, 2024-01-27T23:23:54.969 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "bytes_total": 0 2024-01-27T23:23:54.969 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: }, 2024-01-27T23:23:54.969 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "fsmap": { 2024-01-27T23:23:54.969 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-27T23:23:54.969 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "by_rank": [], 2024-01-27T23:23:54.969 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "up:standby": 0 2024-01-27T23:23:54.969 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: }, 2024-01-27T23:23:54.969 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "mgrmap": { 2024-01-27T23:23:54.969 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "available": true, 2024-01-27T23:23:54.969 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "num_standbys": 0, 2024-01-27T23:23:54.969 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "modules": [ 2024-01-27T23:23:54.969 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "iostat", 2024-01-27T23:23:54.969 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "nfs", 2024-01-27T23:23:54.969 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "restful" 2024-01-27T23:23:54.969 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: ], 2024-01-27T23:23:54.970 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "services": {} 2024-01-27T23:23:54.970 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: }, 2024-01-27T23:23:54.970 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "servicemap": { 2024-01-27T23:23:54.970 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-27T23:23:54.970 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "modified": "2024-01-27T23:23:40.920874+0000", 2024-01-27T23:23:54.970 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "services": {} 2024-01-27T23:23:54.970 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: }, 2024-01-27T23:23:54.970 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "progress_events": {} 2024-01-27T23:23:54.970 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: } 2024-01-27T23:23:55.309 INFO:teuthology.orchestra.run.smithi073.stderr:mgr is available 2024-01-27T23:23:55.798 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: 2024-01-27T23:23:55.799 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: [global] 2024-01-27T23:23:55.799 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: fsid = 0959bd62-bd6b-11ee-95b2-87774f69a715 2024-01-27T23:23:55.799 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: mon_osd_allow_pg_remap = true 2024-01-27T23:23:55.799 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: mon_osd_allow_primary_affinity = true 2024-01-27T23:23:55.799 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: mon_warn_on_no_sortbitwise = false 2024-01-27T23:23:55.799 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: osd_crush_chooseleaf_type = 0 2024-01-27T23:23:55.799 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: 2024-01-27T23:23:55.799 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: [mgr] 2024-01-27T23:23:55.799 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: mgr/telemetry/nag = false 2024-01-27T23:23:55.799 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: 2024-01-27T23:23:55.799 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: [osd] 2024-01-27T23:23:55.799 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: osd_map_max_advance = 10 2024-01-27T23:23:55.799 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: osd_sloppy_crc = true 2024-01-27T23:23:55.802 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:23:54.971773+0000 mon.smithi073 (mon.0) 25 : audit [DBG] from='client.? 172.21.15.73:0/459919062' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-01-27T23:23:56.133 INFO:teuthology.orchestra.run.smithi073.stderr:Enabling cephadm module... 2024-01-27T23:23:56.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:56 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:23:55.808185+0000 mon.smithi073 (mon.0) 26 : audit [INF] from='client.? 172.21.15.73:0/4128867351' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-01-27T23:23:57.609 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:57 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:23:56.676273+0000 mon.smithi073 (mon.0) 27 : audit [INF] from='client.? 172.21.15.73:0/282187108' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "cephadm"}]: dispatch 2024-01-27T23:23:58.280 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: { 2024-01-27T23:23:58.280 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "epoch": 5, 2024-01-27T23:23:58.280 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "available": true, 2024-01-27T23:23:58.280 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "active_name": "smithi073.msdoog", 2024-01-27T23:23:58.280 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "num_standby": 0 2024-01-27T23:23:58.280 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: } 2024-01-27T23:23:58.634 INFO:teuthology.orchestra.run.smithi073.stderr:Waiting for the mgr to restart... 2024-01-27T23:23:58.634 INFO:teuthology.orchestra.run.smithi073.stderr:Waiting for mgr epoch 5... 2024-01-27T23:23:58.741 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:58 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:23:57.376147+0000 mon.smithi073 (mon.0) 28 : audit [INF] from='client.? 172.21.15.73:0/282187108' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-01-27T23:23:58.741 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:58 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:23:57.376215+0000 mon.smithi073 (mon.0) 29 : cluster [DBG] mgrmap e5: smithi073.msdoog(active, since 6s) 2024-01-27T23:23:58.741 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:23:58 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:23:58.290954+0000 mon.smithi073 (mon.0) 30 : audit [DBG] from='client.? 172.21.15.73:0/3050727097' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-01-27T23:24:03.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:02 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:24:02.749662+0000 mon.smithi073 (mon.0) 31 : cluster [INF] Active manager daemon smithi073.msdoog restarted 2024-01-27T23:24:03.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:02 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:24:02.749880+0000 mon.smithi073 (mon.0) 32 : cluster [INF] Activating manager daemon smithi073.msdoog 2024-01-27T23:24:03.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:02 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:24:02.752943+0000 mon.smithi073 (mon.0) 33 : cluster [DBG] osdmap e2: 0 total, 0 up, 0 in 2024-01-27T23:24:03.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:02 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:24:02.753091+0000 mon.smithi073 (mon.0) 34 : cluster [DBG] mgrmap e6: smithi073.msdoog(active, starting, since 0.00328805s) 2024-01-27T23:24:03.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:02 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:02.754090+0000 mon.smithi073 (mon.0) 35 : audit [DBG] from='mgr.14118 172.21.15.73:0/502519775' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "mon metadata", "id": "smithi073"}]: dispatch 2024-01-27T23:24:03.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:02 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:02.754703+0000 mon.smithi073 (mon.0) 36 : audit [DBG] from='mgr.14118 172.21.15.73:0/502519775' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "mgr metadata", "who": "smithi073.msdoog", "id": "smithi073.msdoog"}]: dispatch 2024-01-27T23:24:03.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:02 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:02.755344+0000 mon.smithi073 (mon.0) 37 : audit [DBG] from='mgr.14118 172.21.15.73:0/502519775' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-01-27T23:24:03.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:02 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:02.755573+0000 mon.smithi073 (mon.0) 38 : audit [DBG] from='mgr.14118 172.21.15.73:0/502519775' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-01-27T23:24:03.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:02 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:02.755790+0000 mon.smithi073 (mon.0) 39 : audit [DBG] from='mgr.14118 172.21.15.73:0/502519775' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-01-27T23:24:03.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:02 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:24:02.769089+0000 mon.smithi073 (mon.0) 40 : cluster [INF] Manager daemon smithi073.msdoog is now available 2024-01-27T23:24:03.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:02 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:02.782275+0000 mon.smithi073 (mon.0) 41 : audit [INF] from='mgr.14118 172.21.15.73:0/502519775' entity='mgr.smithi073.msdoog' 2024-01-27T23:24:03.750 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: { 2024-01-27T23:24:03.750 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "mgrmap_epoch": 7, 2024-01-27T23:24:03.750 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "initialized": true 2024-01-27T23:24:03.751 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: } 2024-01-27T23:24:04.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:03 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:24:02.779487+0000 mgr.smithi073.msdoog (mgr.14118) 1 : cephadm [INF] Found migration_current of "None". Setting to last migration. 2024-01-27T23:24:04.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:03 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:02.870984+0000 mon.smithi073 (mon.0) 42 : audit [INF] from='mgr.14118 172.21.15.73:0/502519775' entity='mgr.smithi073.msdoog' 2024-01-27T23:24:04.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:03 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:02.871951+0000 mon.smithi073 (mon.0) 43 : audit [DBG] from='mgr.14118 172.21.15.73:0/502519775' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:24:04.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:03 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:02.873238+0000 mon.smithi073 (mon.0) 44 : audit [DBG] from='mgr.14118 172.21.15.73:0/502519775' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:24:04.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:03 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:02.874690+0000 mon.smithi073 (mon.0) 45 : audit [DBG] from='mgr.14118 172.21.15.73:0/502519775' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:24:04.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:03 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:02.888837+0000 mon.smithi073 (mon.0) 46 : audit [INF] from='mgr.14118 172.21.15.73:0/502519775' entity='mgr.smithi073.msdoog' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi073.msdoog/mirror_snapshot_schedule"}]: dispatch 2024-01-27T23:24:04.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:03 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:02.891265+0000 mon.smithi073 (mon.0) 47 : audit [INF] from='mgr.14118 172.21.15.73:0/502519775' entity='mgr.smithi073.msdoog' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi073.msdoog/trash_purge_schedule"}]: dispatch 2024-01-27T23:24:04.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:03 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:24:03.755182+0000 mon.smithi073 (mon.0) 48 : cluster [DBG] mgrmap e7: smithi073.msdoog(active, since 1.00538s) 2024-01-27T23:24:05.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:05 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:03.755004+0000 mgr.smithi073.msdoog (mgr.14118) 2 : audit [DBG] from='client.14122 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-01-27T23:24:05.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:05 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:03.761433+0000 mgr.smithi073.msdoog (mgr.14118) 3 : audit [DBG] from='client.14122 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-01-27T23:24:06.519 INFO:teuthology.orchestra.run.smithi073.stderr:mgr epoch 5 is available 2024-01-27T23:24:06.519 INFO:teuthology.orchestra.run.smithi073.stderr:Setting orchestrator backend to cephadm... 2024-01-27T23:24:06.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:06 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:24:05.372846+0000 mon.smithi073 (mon.0) 49 : cluster [DBG] mgrmap e8: smithi073.msdoog(active, since 2s) 2024-01-27T23:24:09.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:08 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:07.621717+0000 mgr.smithi073.msdoog (mgr.14118) 4 : audit [DBG] from='client.14128 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:24:09.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:08 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:07.625608+0000 mon.smithi073 (mon.0) 50 : audit [INF] from='mgr.14118 172.21.15.73:0/502519775' entity='mgr.smithi073.msdoog' 2024-01-27T23:24:09.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:08 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:07.653087+0000 mon.smithi073 (mon.0) 51 : audit [DBG] from='mgr.14118 172.21.15.73:0/502519775' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:24:10.493 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: value unchanged 2024-01-27T23:24:10.847 INFO:teuthology.orchestra.run.smithi073.stderr:Generating ssh key... 2024-01-27T23:24:11.769 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:11 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:10.504282+0000 mgr.smithi073.msdoog (mgr.14118) 5 : audit [DBG] from='client.14130 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:24:11.769 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:11 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:11.348566+0000 mgr.smithi073.msdoog (mgr.14118) 6 : audit [DBG] from='client.14132 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:24:11.769 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:11 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:24:11.348808+0000 mgr.smithi073.msdoog (mgr.14118) 7 : cephadm [INF] Generating ssh key... 2024-01-27T23:24:12.609 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCaed7vrvQG0R2cZluiawZwA0emPNjSns/nRzpdJ4M/OXjnUl/bjIjSV/ybL7VVkEq6SXrsz1EHMAdCSKskZ8x9LkB2vrSqQPoAUE+ZXwASPlroiz8yp9ASfdhCLiv+xSF6TmXlEQ/XegRDdlCxn8EbskCMp9tVEwKDXsq5qVKoXr2HdABpUv1yXg1//vk4583QLYRkADO8VQO1L6l22WN1+j0bAcB9kDMQakhcfPYkVMjAHXN9nRadnk/F8BkByutO3thpPbL9grDyb7D93ReWBpZ8hfEWpCTRwYjddXr/mRzb/n4cNzm2diQxe+2RqILoTxWKdy82o93A5DqNVYsR0koeu5BXfC1RCZlJfvCVIlZEg5NH4jEyaKuT4/MNzw32M3nVSPixiDiR6ynlpC7VMogUG0VM8cUrEbMgULiuj05im1iDosRz1zO04rPEi+6ZzXKr9uPadkJQGFbqKvpmBVGLJSXg4XIh3Ebiml3l4ClCz7rZMIUOFz35ijg15cE= ceph-0959bd62-bd6b-11ee-95b2-87774f69a715 2024-01-27T23:24:12.891 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:12 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:11.783775+0000 mon.smithi073 (mon.0) 52 : audit [INF] from='mgr.14118 172.21.15.73:0/502519775' entity='mgr.smithi073.msdoog' 2024-01-27T23:24:12.891 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:12 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:11.785529+0000 mon.smithi073 (mon.0) 53 : audit [INF] from='mgr.14118 172.21.15.73:0/502519775' entity='mgr.smithi073.msdoog' 2024-01-27T23:24:12.956 INFO:teuthology.orchestra.run.smithi073.stderr:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-01-27T23:24:12.956 INFO:teuthology.orchestra.run.smithi073.stderr:Adding key to root@localhost authorized_keys... 2024-01-27T23:24:12.957 INFO:teuthology.orchestra.run.smithi073.stderr:Adding host smithi073... 2024-01-27T23:24:14.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:13 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:12.620276+0000 mgr.smithi073.msdoog (mgr.14118) 8 : audit [DBG] from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:24:14.064 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: Added host 'smithi073' with addr '172.21.15.73' 2024-01-27T23:24:14.364 INFO:teuthology.orchestra.run.smithi073.stderr:Deploying mon service with default placement... 2024-01-27T23:24:14.910 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: Scheduled mon update... 2024-01-27T23:24:15.213 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:15 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:13.456083+0000 mgr.smithi073.msdoog (mgr.14118) 9 : audit [DBG] from='client.14136 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi073", "addr": "172.21.15.73", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:24:15.213 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:15 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:14.073483+0000 mon.smithi073 (mon.0) 54 : audit [INF] from='mgr.14118 172.21.15.73:0/502519775' entity='mgr.smithi073.msdoog' 2024-01-27T23:24:15.213 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:15 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:24:14.073816+0000 mgr.smithi073.msdoog (mgr.14118) 10 : cephadm [INF] Added host smithi073 2024-01-27T23:24:15.213 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:15 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:14.086724+0000 mon.smithi073 (mon.0) 55 : audit [DBG] from='mgr.14118 172.21.15.73:0/502519775' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:24:15.213 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:15 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:14.921575+0000 mon.smithi073 (mon.0) 56 : audit [INF] from='mgr.14118 172.21.15.73:0/502519775' entity='mgr.smithi073.msdoog' 2024-01-27T23:24:15.491 INFO:teuthology.orchestra.run.smithi073.stderr:Deploying mgr service with default placement... 2024-01-27T23:24:16.272 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: Scheduled mgr update... 2024-01-27T23:24:16.296 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:14.918257+0000 mgr.smithi073.msdoog (mgr.14118) 11 : audit [DBG] from='client.14138 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:24:16.296 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:24:14.919422+0000 mgr.smithi073.msdoog (mgr.14118) 12 : cephadm [INF] Saving service mon spec with placement count:5 2024-01-27T23:24:16.646 INFO:teuthology.orchestra.run.smithi073.stderr:Deploying crash service with default placement... 2024-01-27T23:24:17.198 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: Scheduled crash update... 2024-01-27T23:24:17.470 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:17 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:16.092114+0000 mon.smithi073 (mon.0) 57 : audit [INF] from='mgr.14118 172.21.15.73:0/502519775' entity='mgr.smithi073.msdoog' 2024-01-27T23:24:17.470 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:17 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:16.279609+0000 mgr.smithi073.msdoog (mgr.14118) 13 : audit [DBG] from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:24:17.470 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:17 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:24:16.280482+0000 mgr.smithi073.msdoog (mgr.14118) 14 : cephadm [INF] Saving service mgr spec with placement count:2 2024-01-27T23:24:17.470 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:17 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:16.282639+0000 mon.smithi073 (mon.0) 58 : audit [INF] from='mgr.14118 172.21.15.73:0/502519775' entity='mgr.smithi073.msdoog' 2024-01-27T23:24:17.470 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:17 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:16.328327+0000 mon.smithi073 (mon.0) 59 : audit [INF] from='mgr.14118 172.21.15.73:0/502519775' entity='mgr.smithi073.msdoog' 2024-01-27T23:24:17.580 INFO:teuthology.orchestra.run.smithi073.stderr:Deploying prometheus service with default placement... 2024-01-27T23:24:18.233 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: Scheduled prometheus update... 2024-01-27T23:24:18.437 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:18 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:17.114286+0000 mon.smithi073 (mon.0) 60 : audit [INF] from='mgr.14118 172.21.15.73:0/502519775' entity='mgr.smithi073.msdoog' 2024-01-27T23:24:18.438 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:18 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:17.206690+0000 mgr.smithi073.msdoog (mgr.14118) 15 : audit [DBG] from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "crash", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:24:18.438 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:18 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:24:17.207646+0000 mgr.smithi073.msdoog (mgr.14118) 16 : cephadm [INF] Saving service crash spec with placement * 2024-01-27T23:24:18.438 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:18 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:17.209898+0000 mon.smithi073 (mon.0) 61 : audit [INF] from='mgr.14118 172.21.15.73:0/502519775' entity='mgr.smithi073.msdoog' 2024-01-27T23:24:18.562 INFO:teuthology.orchestra.run.smithi073.stderr:Deploying grafana service with default placement... 2024-01-27T23:24:19.058 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: Scheduled grafana update... 2024-01-27T23:24:19.387 INFO:teuthology.orchestra.run.smithi073.stderr:Deploying node-exporter service with default placement... 2024-01-27T23:24:19.493 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:19 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:18.240127+0000 mgr.smithi073.msdoog (mgr.14118) 17 : audit [DBG] from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "prometheus", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:24:19.493 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:19 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:24:18.240994+0000 mgr.smithi073.msdoog (mgr.14118) 18 : cephadm [INF] Saving service prometheus spec with placement count:1 2024-01-27T23:24:19.493 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:19 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:18.244177+0000 mon.smithi073 (mon.0) 62 : audit [INF] from='mgr.14118 172.21.15.73:0/502519775' entity='mgr.smithi073.msdoog' 2024-01-27T23:24:19.493 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:19 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:19.069153+0000 mon.smithi073 (mon.0) 63 : audit [INF] from='mgr.14118 172.21.15.73:0/502519775' entity='mgr.smithi073.msdoog' 2024-01-27T23:24:19.898 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: Scheduled node-exporter update... 2024-01-27T23:24:20.271 INFO:teuthology.orchestra.run.smithi073.stderr:Deploying alertmanager service with default placement... 2024-01-27T23:24:20.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:19.066207+0000 mgr.smithi073.msdoog (mgr.14118) 19 : audit [DBG] from='client.14146 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "grafana", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:24:20.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:24:19.067065+0000 mgr.smithi073.msdoog (mgr.14118) 20 : cephadm [INF] Saving service grafana spec with placement count:1 2024-01-27T23:24:20.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:19.908829+0000 mon.smithi073 (mon.0) 64 : audit [INF] from='mgr.14118 172.21.15.73:0/502519775' entity='mgr.smithi073.msdoog' 2024-01-27T23:24:20.755 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: Scheduled alertmanager update... 2024-01-27T23:24:21.697 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:21 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:19.905687+0000 mgr.smithi073.msdoog (mgr.14118) 21 : audit [DBG] from='client.14148 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "node-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:24:21.697 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:21 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:24:19.906556+0000 mgr.smithi073.msdoog (mgr.14118) 22 : cephadm [INF] Saving service node-exporter spec with placement * 2024-01-27T23:24:21.697 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:21 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:20.766658+0000 mon.smithi073 (mon.0) 65 : audit [INF] from='mgr.14118 172.21.15.73:0/502519775' entity='mgr.smithi073.msdoog' 2024-01-27T23:24:22.702 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:22 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:20.762698+0000 mgr.smithi073.msdoog (mgr.14118) 23 : audit [DBG] from='client.14150 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "alertmanager", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:24:22.703 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:22 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:24:20.763542+0000 mgr.smithi073.msdoog (mgr.14118) 24 : cephadm [INF] Saving service alertmanager spec with placement count:1 2024-01-27T23:24:22.703 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:22 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:21.677854+0000 mon.smithi073 (mon.0) 66 : audit [INF] from='client.? 172.21.15.73:0/1627122820' entity='client.admin' 2024-01-27T23:24:22.879 INFO:teuthology.orchestra.run.smithi073.stderr:Enabling the dashboard module... 2024-01-27T23:24:23.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:23 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:22.549813+0000 mon.smithi073 (mon.0) 67 : audit [INF] from='client.? 172.21.15.73:0/3204764170' entity='client.admin' 2024-01-27T23:24:23.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:23 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:24:22.756787+0000 mgr.smithi073.msdoog (mgr.14118) 25 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:24:23.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:23 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:23.431512+0000 mon.smithi073 (mon.0) 68 : audit [INF] from='client.? 172.21.15.73:0/870801846' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "dashboard"}]: dispatch 2024-01-27T23:24:24.638 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: { 2024-01-27T23:24:24.638 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "epoch": 9, 2024-01-27T23:24:24.638 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "available": true, 2024-01-27T23:24:24.638 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "active_name": "smithi073.msdoog", 2024-01-27T23:24:24.638 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "num_standby": 0 2024-01-27T23:24:24.639 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: } 2024-01-27T23:24:24.979 INFO:teuthology.orchestra.run.smithi073.stderr:Waiting for the mgr to restart... 2024-01-27T23:24:24.979 INFO:teuthology.orchestra.run.smithi073.stderr:Waiting for mgr epoch 9... 2024-01-27T23:24:25.052 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:23.760408+0000 mon.smithi073 (mon.0) 69 : audit [INF] from='client.? 172.21.15.73:0/870801846' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-01-27T23:24:25.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:24:23.760478+0000 mon.smithi073 (mon.0) 70 : cluster [DBG] mgrmap e9: smithi073.msdoog(active, since 21s) 2024-01-27T23:24:25.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:24.649247+0000 mon.smithi073 (mon.0) 71 : audit [DBG] from='client.? 172.21.15.73:0/3266611967' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-01-27T23:24:29.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:29 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:24:29.106647+0000 mon.smithi073 (mon.0) 72 : cluster [INF] Active manager daemon smithi073.msdoog restarted 2024-01-27T23:24:29.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:29 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:24:29.106873+0000 mon.smithi073 (mon.0) 73 : cluster [INF] Activating manager daemon smithi073.msdoog 2024-01-27T23:24:29.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:29 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:24:29.109462+0000 mon.smithi073 (mon.0) 74 : cluster [DBG] osdmap e3: 0 total, 0 up, 0 in 2024-01-27T23:24:29.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:29 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:24:29.109550+0000 mon.smithi073 (mon.0) 75 : cluster [DBG] mgrmap e10: smithi073.msdoog(active, starting, since 0.00276587s) 2024-01-27T23:24:29.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:29 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:29.110485+0000 mon.smithi073 (mon.0) 76 : audit [DBG] from='mgr.14158 172.21.15.73:0/3302404866' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "mon metadata", "id": "smithi073"}]: dispatch 2024-01-27T23:24:29.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:29 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:29.111035+0000 mon.smithi073 (mon.0) 77 : audit [DBG] from='mgr.14158 172.21.15.73:0/3302404866' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "mgr metadata", "who": "smithi073.msdoog", "id": "smithi073.msdoog"}]: dispatch 2024-01-27T23:24:29.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:29 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:29.111854+0000 mon.smithi073 (mon.0) 78 : audit [DBG] from='mgr.14158 172.21.15.73:0/3302404866' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-01-27T23:24:29.554 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:29 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:29.112012+0000 mon.smithi073 (mon.0) 79 : audit [DBG] from='mgr.14158 172.21.15.73:0/3302404866' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-01-27T23:24:29.554 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:29 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:29.112134+0000 mon.smithi073 (mon.0) 80 : audit [DBG] from='mgr.14158 172.21.15.73:0/3302404866' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-01-27T23:24:29.554 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:29 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:24:29.125637+0000 mon.smithi073 (mon.0) 81 : cluster [INF] Manager daemon smithi073.msdoog is now available 2024-01-27T23:24:30.106 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: { 2024-01-27T23:24:30.106 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "mgrmap_epoch": 11, 2024-01-27T23:24:30.107 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: "initialized": true 2024-01-27T23:24:30.107 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: } 2024-01-27T23:24:30.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:30 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:29.220167+0000 mon.smithi073 (mon.0) 82 : audit [DBG] from='mgr.14158 172.21.15.73:0/3302404866' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:24:30.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:30 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:29.221669+0000 mon.smithi073 (mon.0) 83 : audit [DBG] from='mgr.14158 172.21.15.73:0/3302404866' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:24:30.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:30 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:29.246546+0000 mon.smithi073 (mon.0) 84 : audit [INF] from='mgr.14158 172.21.15.73:0/3302404866' entity='mgr.smithi073.msdoog' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi073.msdoog/mirror_snapshot_schedule"}]: dispatch 2024-01-27T23:24:30.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:30 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:29.249202+0000 mon.smithi073 (mon.0) 85 : audit [INF] from='mgr.14158 172.21.15.73:0/3302404866' entity='mgr.smithi073.msdoog' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi073.msdoog/trash_purge_schedule"}]: dispatch 2024-01-27T23:24:30.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:30 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:30.035985+0000 mon.smithi073 (mon.0) 86 : audit [INF] from='mgr.14158 172.21.15.73:0/3302404866' entity='mgr.smithi073.msdoog' 2024-01-27T23:24:30.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:30 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:24:30.112784+0000 mon.smithi073 (mon.0) 87 : cluster [DBG] mgrmap e11: smithi073.msdoog(active, since 1.006s) 2024-01-27T23:24:30.562 INFO:teuthology.orchestra.run.smithi073.stderr:mgr epoch 9 is available 2024-01-27T23:24:30.562 INFO:teuthology.orchestra.run.smithi073.stderr:Generating a dashboard self-signed certificate... 2024-01-27T23:24:31.179 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: Self-signed certificate created 2024-01-27T23:24:31.438 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:31 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:30.111606+0000 mgr.smithi073.msdoog (mgr.14158) 1 : audit [DBG] from='client.14162 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-01-27T23:24:31.438 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:31 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:30.117700+0000 mgr.smithi073.msdoog (mgr.14158) 2 : audit [DBG] from='client.14162 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-01-27T23:24:31.511 INFO:teuthology.orchestra.run.smithi073.stderr:Creating initial admin user... 2024-01-27T23:24:32.269 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: {"username": "admin", "password": "$2b$12$kQVqHYTO1gMbf2LJaZuNNed.RmAndfCp20Ra/WG7Y/sNwSErWMG7K", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1706397872, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2024-01-27T23:24:32.418 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:32 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:31.078599+0000 mgr.smithi073.msdoog (mgr.14158) 3 : audit [DBG] from='client.14168 -' entity='client.admin' cmd=[{"prefix": "dashboard create-self-signed-cert", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:24:32.418 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:32 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:24:31.161446+0000 mon.smithi073 (mon.0) 88 : cluster [DBG] mgrmap e12: smithi073.msdoog(active, since 2s) 2024-01-27T23:24:32.418 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:32 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:31.183691+0000 mon.smithi073 (mon.0) 89 : audit [INF] from='mgr.14158 172.21.15.73:0/3302404866' entity='mgr.smithi073.msdoog' 2024-01-27T23:24:32.418 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:32 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:31.189646+0000 mon.smithi073 (mon.0) 90 : audit [INF] from='mgr.14158 172.21.15.73:0/3302404866' entity='mgr.smithi073.msdoog' 2024-01-27T23:24:32.611 INFO:teuthology.orchestra.run.smithi073.stderr:Fetching dashboard port number... 2024-01-27T23:24:33.103 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: 8443 2024-01-27T23:24:33.452 INFO:teuthology.orchestra.run.smithi073.stderr:systemctl: disabled 2024-01-27T23:24:33.459 INFO:teuthology.orchestra.run.smithi073.stderr:systemctl: inactive 2024-01-27T23:24:33.459 INFO:teuthology.orchestra.run.smithi073.stderr:firewalld.service is not enabled 2024-01-27T23:24:33.459 INFO:teuthology.orchestra.run.smithi073.stderr:Not possible to open ports <[8443]>. firewalld.service is not available 2024-01-27T23:24:33.461 INFO:teuthology.orchestra.run.smithi073.stderr:Ceph Dashboard is now available at: 2024-01-27T23:24:33.461 INFO:teuthology.orchestra.run.smithi073.stderr: 2024-01-27T23:24:33.462 INFO:teuthology.orchestra.run.smithi073.stderr: URL: https://smithi073:8443/ 2024-01-27T23:24:33.462 INFO:teuthology.orchestra.run.smithi073.stderr: User: admin 2024-01-27T23:24:33.462 INFO:teuthology.orchestra.run.smithi073.stderr: Password: v368wahyhr 2024-01-27T23:24:33.462 INFO:teuthology.orchestra.run.smithi073.stderr: 2024-01-27T23:24:33.462 INFO:teuthology.orchestra.run.smithi073.stderr:Enabling autotune for osd_memory_target 2024-01-27T23:24:33.552 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:33 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:32.063668+0000 mgr.smithi073.msdoog (mgr.14158) 4 : audit [DBG] from='client.14170 -' entity='client.admin' cmd=[{"prefix": "dashboard ac-user-create", "username": "admin", "rolename": "administrator", "force_password": true, "pwd_update_required": true, "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:24:33.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:33 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:32.280409+0000 mon.smithi073 (mon.0) 91 : audit [INF] from='mgr.14158 172.21.15.73:0/3302404866' entity='mgr.smithi073.msdoog' 2024-01-27T23:24:33.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:33 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:33.114628+0000 mon.smithi073 (mon.0) 92 : audit [DBG] from='client.? 172.21.15.73:0/1904904083' entity='client.admin' cmd=[{"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"}]: dispatch 2024-01-27T23:24:34.919 INFO:teuthology.orchestra.run.smithi073.stderr:/usr/bin/ceph: set mgr/dashboard/cluster/status 2024-01-27T23:24:35.269 INFO:teuthology.orchestra.run.smithi073.stderr:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2024-01-27T23:24:35.270 INFO:teuthology.orchestra.run.smithi073.stderr: 2024-01-27T23:24:35.270 INFO:teuthology.orchestra.run.smithi073.stderr: sudo /home/ubuntu/cephtest/cephadm shell --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2024-01-27T23:24:35.270 INFO:teuthology.orchestra.run.smithi073.stderr: 2024-01-27T23:24:35.270 INFO:teuthology.orchestra.run.smithi073.stderr:Or, if you are only running a single cluster on this host: 2024-01-27T23:24:35.270 INFO:teuthology.orchestra.run.smithi073.stderr: 2024-01-27T23:24:35.270 INFO:teuthology.orchestra.run.smithi073.stderr: sudo /home/ubuntu/cephtest/cephadm shell 2024-01-27T23:24:35.270 INFO:teuthology.orchestra.run.smithi073.stderr: 2024-01-27T23:24:35.270 INFO:teuthology.orchestra.run.smithi073.stderr:Please consider enabling telemetry to help improve Ceph: 2024-01-27T23:24:35.270 INFO:teuthology.orchestra.run.smithi073.stderr: 2024-01-27T23:24:35.270 INFO:teuthology.orchestra.run.smithi073.stderr: ceph telemetry on 2024-01-27T23:24:35.270 INFO:teuthology.orchestra.run.smithi073.stderr: 2024-01-27T23:24:35.270 INFO:teuthology.orchestra.run.smithi073.stderr:For more information see: 2024-01-27T23:24:35.270 INFO:teuthology.orchestra.run.smithi073.stderr: 2024-01-27T23:24:35.270 INFO:teuthology.orchestra.run.smithi073.stderr: https://docs.ceph.com/en/pacific/mgr/telemetry/ 2024-01-27T23:24:35.271 INFO:teuthology.orchestra.run.smithi073.stderr: 2024-01-27T23:24:35.271 INFO:teuthology.orchestra.run.smithi073.stderr:Bootstrap complete. 2024-01-27T23:24:35.305 INFO:tasks.cephadm:Fetching config... 2024-01-27T23:24:35.306 DEBUG:teuthology.orchestra.run.smithi073:> set -ex 2024-01-27T23:24:35.306 DEBUG:teuthology.orchestra.run.smithi073:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2024-01-27T23:24:35.322 INFO:tasks.cephadm:Fetching client.admin keyring... 2024-01-27T23:24:35.322 DEBUG:teuthology.orchestra.run.smithi073:> set -ex 2024-01-27T23:24:35.323 DEBUG:teuthology.orchestra.run.smithi073:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2024-01-27T23:24:35.379 INFO:tasks.cephadm:Fetching mon keyring... 2024-01-27T23:24:35.380 DEBUG:teuthology.orchestra.run.smithi073:> set -ex 2024-01-27T23:24:35.380 DEBUG:teuthology.orchestra.run.smithi073:> sudo dd if=/var/lib/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/mon.smithi073/keyring of=/dev/stdout 2024-01-27T23:24:35.448 INFO:tasks.cephadm:Fetching pub ssh key... 2024-01-27T23:24:35.449 DEBUG:teuthology.orchestra.run.smithi073:> set -ex 2024-01-27T23:24:35.449 DEBUG:teuthology.orchestra.run.smithi073:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2024-01-27T23:24:35.507 INFO:tasks.cephadm:Installing pub ssh key for root users... 2024-01-27T23:24:35.507 DEBUG:teuthology.orchestra.run.smithi073:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCaed7vrvQG0R2cZluiawZwA0emPNjSns/nRzpdJ4M/OXjnUl/bjIjSV/ybL7VVkEq6SXrsz1EHMAdCSKskZ8x9LkB2vrSqQPoAUE+ZXwASPlroiz8yp9ASfdhCLiv+xSF6TmXlEQ/XegRDdlCxn8EbskCMp9tVEwKDXsq5qVKoXr2HdABpUv1yXg1//vk4583QLYRkADO8VQO1L6l22WN1+j0bAcB9kDMQakhcfPYkVMjAHXN9nRadnk/F8BkByutO3thpPbL9grDyb7D93ReWBpZ8hfEWpCTRwYjddXr/mRzb/n4cNzm2diQxe+2RqILoTxWKdy82o93A5DqNVYsR0koeu5BXfC1RCZlJfvCVIlZEg5NH4jEyaKuT4/MNzw32M3nVSPixiDiR6ynlpC7VMogUG0VM8cUrEbMgULiuj05im1iDosRz1zO04rPEi+6ZzXKr9uPadkJQGFbqKvpmBVGLJSXg4XIh3Ebiml3l4ClCz7rZMIUOFz35ijg15cE= ceph-0959bd62-bd6b-11ee-95b2-87774f69a715' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-01-27T23:24:35.584 INFO:teuthology.orchestra.run.smithi073.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCaed7vrvQG0R2cZluiawZwA0emPNjSns/nRzpdJ4M/OXjnUl/bjIjSV/ybL7VVkEq6SXrsz1EHMAdCSKskZ8x9LkB2vrSqQPoAUE+ZXwASPlroiz8yp9ASfdhCLiv+xSF6TmXlEQ/XegRDdlCxn8EbskCMp9tVEwKDXsq5qVKoXr2HdABpUv1yXg1//vk4583QLYRkADO8VQO1L6l22WN1+j0bAcB9kDMQakhcfPYkVMjAHXN9nRadnk/F8BkByutO3thpPbL9grDyb7D93ReWBpZ8hfEWpCTRwYjddXr/mRzb/n4cNzm2diQxe+2RqILoTxWKdy82o93A5DqNVYsR0koeu5BXfC1RCZlJfvCVIlZEg5NH4jEyaKuT4/MNzw32M3nVSPixiDiR6ynlpC7VMogUG0VM8cUrEbMgULiuj05im1iDosRz1zO04rPEi+6ZzXKr9uPadkJQGFbqKvpmBVGLJSXg4XIh3Ebiml3l4ClCz7rZMIUOFz35ijg15cE= ceph-0959bd62-bd6b-11ee-95b2-87774f69a715 2024-01-27T23:24:35.596 DEBUG:teuthology.orchestra.run.smithi186:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCaed7vrvQG0R2cZluiawZwA0emPNjSns/nRzpdJ4M/OXjnUl/bjIjSV/ybL7VVkEq6SXrsz1EHMAdCSKskZ8x9LkB2vrSqQPoAUE+ZXwASPlroiz8yp9ASfdhCLiv+xSF6TmXlEQ/XegRDdlCxn8EbskCMp9tVEwKDXsq5qVKoXr2HdABpUv1yXg1//vk4583QLYRkADO8VQO1L6l22WN1+j0bAcB9kDMQakhcfPYkVMjAHXN9nRadnk/F8BkByutO3thpPbL9grDyb7D93ReWBpZ8hfEWpCTRwYjddXr/mRzb/n4cNzm2diQxe+2RqILoTxWKdy82o93A5DqNVYsR0koeu5BXfC1RCZlJfvCVIlZEg5NH4jEyaKuT4/MNzw32M3nVSPixiDiR6ynlpC7VMogUG0VM8cUrEbMgULiuj05im1iDosRz1zO04rPEi+6ZzXKr9uPadkJQGFbqKvpmBVGLJSXg4XIh3Ebiml3l4ClCz7rZMIUOFz35ijg15cE= ceph-0959bd62-bd6b-11ee-95b2-87774f69a715' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-01-27T23:24:35.643 INFO:teuthology.orchestra.run.smithi186.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCaed7vrvQG0R2cZluiawZwA0emPNjSns/nRzpdJ4M/OXjnUl/bjIjSV/ybL7VVkEq6SXrsz1EHMAdCSKskZ8x9LkB2vrSqQPoAUE+ZXwASPlroiz8yp9ASfdhCLiv+xSF6TmXlEQ/XegRDdlCxn8EbskCMp9tVEwKDXsq5qVKoXr2HdABpUv1yXg1//vk4583QLYRkADO8VQO1L6l22WN1+j0bAcB9kDMQakhcfPYkVMjAHXN9nRadnk/F8BkByutO3thpPbL9grDyb7D93ReWBpZ8hfEWpCTRwYjddXr/mRzb/n4cNzm2diQxe+2RqILoTxWKdy82o93A5DqNVYsR0koeu5BXfC1RCZlJfvCVIlZEg5NH4jEyaKuT4/MNzw32M3nVSPixiDiR6ynlpC7VMogUG0VM8cUrEbMgULiuj05im1iDosRz1zO04rPEi+6ZzXKr9uPadkJQGFbqKvpmBVGLJSXg4XIh3Ebiml3l4ClCz7rZMIUOFz35ijg15cE= ceph-0959bd62-bd6b-11ee-95b2-87774f69a715 2024-01-27T23:24:35.656 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2024-01-27T23:24:36.303 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:35 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:34.927951+0000 mon.smithi073 (mon.0) 93 : audit [INF] from='client.? 172.21.15.73:0/453248195' entity='client.admin' 2024-01-27T23:24:37.176 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:36 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:24:35.929635+0000 mon.smithi073 (mon.0) 94 : cluster [DBG] mgrmap e13: smithi073.msdoog(active, since 6s) 2024-01-27T23:24:37.468 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2024-01-27T23:24:37.468 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch client-keyring set client.admin '*' --mode 0755 2024-01-27T23:24:38.396 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:38 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:37.114088+0000 mon.smithi073 (mon.0) 95 : audit [INF] from='mgr.14158 172.21.15.73:0/3302404866' entity='mgr.smithi073.msdoog' 2024-01-27T23:24:38.396 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:38 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:37.156565+0000 mon.smithi073 (mon.0) 96 : audit [INF] from='client.? 172.21.15.73:0/1160133504' entity='client.admin' 2024-01-27T23:24:38.396 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:38 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:37.547940+0000 mon.smithi073 (mon.0) 97 : audit [INF] from='mgr.14158 172.21.15.73:0/3302404866' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config rm", "who": "osd/host:smithi073", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:24:38.396 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:38 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:37.551074+0000 mon.smithi073 (mon.0) 98 : audit [INF] from='mgr.14158 172.21.15.73:0/3302404866' entity='mgr.smithi073.msdoog' 2024-01-27T23:24:38.397 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:38 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:24:37.559631+0000 mgr.smithi073.msdoog (mgr.14158) 5 : cephadm [INF] Deploying daemon alertmanager.smithi073 on smithi073 2024-01-27T23:24:39.239 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi186 2024-01-27T23:24:39.240 DEBUG:teuthology.orchestra.run.smithi186:> set -ex 2024-01-27T23:24:39.240 DEBUG:teuthology.orchestra.run.smithi186:> dd of=/etc/ceph/ceph.conf 2024-01-27T23:24:39.261 DEBUG:teuthology.orchestra.run.smithi186:> set -ex 2024-01-27T23:24:39.261 DEBUG:teuthology.orchestra.run.smithi186:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-01-27T23:24:39.321 INFO:tasks.cephadm:Adding host smithi186 to orchestrator... 2024-01-27T23:24:39.321 DEBUG:teuthology.orchestra.run.smithi186:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch host add smithi186 2024-01-27T23:24:40.303 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:39 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:38.884224+0000 mgr.smithi073.msdoog (mgr.14158) 6 : audit [DBG] from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:24:40.303 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:39 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:38.886612+0000 mon.smithi073 (mon.0) 99 : audit [INF] from='mgr.14158 172.21.15.73:0/3302404866' entity='mgr.smithi073.msdoog' 2024-01-27T23:24:44.950 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:43.583688+0000 mon.smithi073 (mon.0) 100 : audit [INF] from='mgr.14158 172.21.15.73:0/3302404866' entity='mgr.smithi073.msdoog' 2024-01-27T23:24:44.951 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:43.585266+0000 mon.smithi073 (mon.0) 101 : audit [INF] from='mgr.14158 172.21.15.73:0/3302404866' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi073", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-01-27T23:24:44.951 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:43.588524+0000 mon.smithi073 (mon.0) 102 : audit [INF] from='mgr.14158 172.21.15.73:0/3302404866' entity='mgr.smithi073.msdoog' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi073", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-01-27T23:24:44.951 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:43.589099+0000 mon.smithi073 (mon.0) 103 : audit [DBG] from='mgr.14158 172.21.15.73:0/3302404866' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:24:44.951 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:24:43.589550+0000 mgr.smithi073.msdoog (mgr.14158) 7 : cephadm [INF] Deploying daemon crash.smithi073 on smithi073 2024-01-27T23:24:44.951 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:44.244877+0000 mon.smithi073 (mon.0) 104 : audit [INF] from='mgr.14158 172.21.15.73:0/3302404866' entity='mgr.smithi073.msdoog' 2024-01-27T23:24:46.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:45.160222+0000 mon.smithi073 (mon.0) 105 : audit [INF] from='mgr.14158 172.21.15.73:0/3302404866' entity='mgr.smithi073.msdoog' 2024-01-27T23:24:46.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:45.246473+0000 mon.smithi073 (mon.0) 106 : audit [INF] from='mgr.14158 172.21.15.73:0/3302404866' entity='mgr.smithi073.msdoog' 2024-01-27T23:24:46.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:45.251312+0000 mon.smithi073 (mon.0) 107 : audit [INF] from='mgr.14158 172.21.15.73:0/3302404866' entity='mgr.smithi073.msdoog' 2024-01-27T23:24:46.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:45.253190+0000 mon.smithi073 (mon.0) 108 : audit [INF] from='mgr.14158 172.21.15.73:0/3302404866' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-01-27T23:24:46.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:45.253554+0000 mgr.smithi073.msdoog (mgr.14158) 8 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-01-27T23:24:46.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:45.258629+0000 mon.smithi073 (mon.0) 109 : audit [INF] from='mgr.14158 172.21.15.73:0/3302404866' entity='mgr.smithi073.msdoog' 2024-01-27T23:24:46.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:24:45.264425+0000 mgr.smithi073.msdoog (mgr.14158) 9 : cephadm [INF] Deploying daemon grafana.smithi073 on smithi073 2024-01-27T23:24:50.552 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:24:49.113063+0000 mgr.smithi073.msdoog (mgr.14158) 10 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:24:50.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:49.248213+0000 mon.smithi073 (mon.0) 110 : audit [INF] from='mgr.14158 172.21.15.73:0/3302404866' entity='mgr.smithi073.msdoog' 2024-01-27T23:24:52.552 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:52 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:24:51.113286+0000 mgr.smithi073.msdoog (mgr.14158) 11 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:24:54.552 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:54 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:24:53.113500+0000 mgr.smithi073.msdoog (mgr.14158) 12 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:24:56.731 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:56 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:24:55.113742+0000 mgr.smithi073.msdoog (mgr.14158) 13 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:24:58.554 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:58 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:24:57.113981+0000 mgr.smithi073.msdoog (mgr.14158) 14 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:24:58.554 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:58 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:58.134791+0000 mon.smithi073 (mon.0) 111 : audit [INF] from='mgr.14158 172.21.15.73:0/3302404866' entity='mgr.smithi073.msdoog' 2024-01-27T23:24:59.552 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:59 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:24:58.136798+0000 mgr.smithi073.msdoog (mgr.14158) 15 : cephadm [INF] Deploying daemon node-exporter.smithi073 on smithi073 2024-01-27T23:24:59.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:24:59 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:24:59.251667+0000 mon.smithi073 (mon.0) 112 : audit [INF] from='mgr.14158 172.21.15.73:0/3302404866' entity='mgr.smithi073.msdoog' 2024-01-27T23:25:00.646 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:00 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:24:59.114211+0000 mgr.smithi073.msdoog (mgr.14158) 16 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:25:02.055 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:01 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:00.715734+0000 mon.smithi073 (mon.0) 113 : audit [INF] from='mgr.14158 172.21.15.73:0/3302404866' entity='mgr.smithi073.msdoog' 2024-01-27T23:25:02.055 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:01 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:00.717824+0000 mon.smithi073 (mon.0) 114 : audit [INF] from='mgr.14158 172.21.15.73:0/3302404866' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "mgr module enable", "module": "prometheus"}]: dispatch 2024-01-27T23:25:03.040 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:02 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:01.720878+0000 mon.smithi073 (mon.0) 115 : audit [INF] from='mgr.14158 172.21.15.73:0/3302404866' entity='mgr.smithi073.msdoog' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2024-01-27T23:25:03.040 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:02 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:25:01.720943+0000 mon.smithi073 (mon.0) 116 : cluster [DBG] mgrmap e14: smithi073.msdoog(active, since 32s) 2024-01-27T23:25:07.257 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:07 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:25:06.968673+0000 mon.smithi073 (mon.0) 117 : cluster [INF] Active manager daemon smithi073.msdoog restarted 2024-01-27T23:25:07.257 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:07 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:25:06.968905+0000 mon.smithi073 (mon.0) 118 : cluster [INF] Activating manager daemon smithi073.msdoog 2024-01-27T23:25:07.257 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:07 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:25:06.971662+0000 mon.smithi073 (mon.0) 119 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-01-27T23:25:07.258 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:07 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:25:06.971771+0000 mon.smithi073 (mon.0) 120 : cluster [DBG] mgrmap e15: smithi073.msdoog(active, starting, since 0.00295406s) 2024-01-27T23:25:07.258 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:07 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:06.972793+0000 mon.smithi073 (mon.0) 121 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "mon metadata", "id": "smithi073"}]: dispatch 2024-01-27T23:25:07.258 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:07 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:06.973323+0000 mon.smithi073 (mon.0) 122 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "mgr metadata", "who": "smithi073.msdoog", "id": "smithi073.msdoog"}]: dispatch 2024-01-27T23:25:07.258 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:07 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:06.973917+0000 mon.smithi073 (mon.0) 123 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-01-27T23:25:07.258 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:07 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:06.974084+0000 mon.smithi073 (mon.0) 124 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-01-27T23:25:07.258 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:07 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:06.974197+0000 mon.smithi073 (mon.0) 125 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-01-27T23:25:07.258 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:07 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:25:06.988206+0000 mon.smithi073 (mon.0) 126 : cluster [INF] Manager daemon smithi073.msdoog is now available 2024-01-27T23:25:08.303 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:08 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:07.082592+0000 mon.smithi073 (mon.0) 127 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:25:08.303 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:08 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:07.084671+0000 mon.smithi073 (mon.0) 128 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:25:08.303 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:08 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:07.109658+0000 mon.smithi073 (mon.0) 129 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:25:08.303 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:08 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:07.123255+0000 mon.smithi073 (mon.0) 130 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi073.msdoog/mirror_snapshot_schedule"}]: dispatch 2024-01-27T23:25:08.303 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:08 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:07.126999+0000 mon.smithi073 (mon.0) 131 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi073.msdoog/trash_purge_schedule"}]: dispatch 2024-01-27T23:25:08.303 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:08 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:25:07.973926+0000 mon.smithi073 (mon.0) 132 : cluster [DBG] mgrmap e16: smithi073.msdoog(active, since 1.00511s) 2024-01-27T23:25:08.611 INFO:teuthology.orchestra.run.smithi186.stdout:Added host 'smithi186' with addr '172.21.15.186' 2024-01-27T23:25:08.962 DEBUG:teuthology.orchestra.run.smithi186:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch host ls --format=json 2024-01-27T23:25:10.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:09 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:08.620921+0000 mon.smithi073 (mon.0) 133 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:25:10.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:09 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:25:08.621294+0000 mgr.smithi073.msdoog (mgr.14182) 2 : cephadm [INF] Added host smithi186 2024-01-27T23:25:10.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:09 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:09.121326+0000 mon.smithi073 (mon.0) 134 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:25:10.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:09 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:09.401779+0000 mon.smithi073 (mon.0) 135 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config rm", "who": "osd/host:smithi073", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:25:10.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:09 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:09.402574+0000 mon.smithi073 (mon.0) 136 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:25:10.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:09 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:09.403184+0000 mon.smithi073 (mon.0) 137 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:25:10.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:09 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:09.454828+0000 mon.smithi073 (mon.0) 138 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:25:10.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:09 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:09.457195+0000 mon.smithi073 (mon.0) 139 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:25:10.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:09 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:09.460862+0000 mon.smithi073 (mon.0) 140 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "mgr module enable", "module": "prometheus"}]: dispatch 2024-01-27T23:25:10.261 INFO:teuthology.orchestra.run.smithi186.stdout: 2024-01-27T23:25:10.261 INFO:teuthology.orchestra.run.smithi186.stdout:[{"addr": "172.21.15.73", "hostname": "smithi073", "labels": [], "status": ""}, {"addr": "172.21.15.186", "hostname": "smithi186", "labels": [], "status": ""}] 2024-01-27T23:25:10.688 INFO:tasks.cephadm:Setting crush tunables to default 2024-01-27T23:25:10.688 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph osd crush tunables default 2024-01-27T23:25:11.004 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:10 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:25:09.404247+0000 mgr.smithi073.msdoog (mgr.14182) 3 : cephadm [INF] Updating smithi073:/etc/ceph/ceph.conf 2024-01-27T23:25:11.005 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:10 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:25:09.426425+0000 mgr.smithi073.msdoog (mgr.14182) 4 : cephadm [INF] Updating smithi073:/etc/ceph/ceph.client.admin.keyring 2024-01-27T23:25:11.005 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:10 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:09.623594+0000 mon.smithi073 (mon.0) 141 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2024-01-27T23:25:11.005 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:10 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:25:09.623635+0000 mon.smithi073 (mon.0) 142 : cluster [DBG] mgrmap e17: smithi073.msdoog(active, since 2s) 2024-01-27T23:25:11.005 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:10 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:25:09.631940+0000 mgr.smithi073.msdoog (mgr.14182) 5 : cephadm [INF] Deploying daemon prometheus.smithi073 on smithi073 2024-01-27T23:25:11.802 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:11 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:10.272256+0000 mgr.smithi073.msdoog (mgr.14182) 6 : audit [DBG] from='client.14190 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:25:12.618 INFO:teuthology.orchestra.run.smithi073.stderr:adjusted tunables profile to default 2024-01-27T23:25:13.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:12 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:12.279832+0000 mon.smithi073 (mon.0) 143 : audit [INF] from='client.? 172.21.15.73:0/852657246' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-01-27T23:25:13.802 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:13 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:12.627093+0000 mon.smithi073 (mon.0) 144 : audit [INF] from='client.? 172.21.15.73:0/852657246' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-01-27T23:25:13.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:13 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:25:12.627149+0000 mon.smithi073 (mon.0) 145 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-01-27T23:25:14.266 INFO:tasks.cephadm:Adding mon.smithi073 on smithi073 2024-01-27T23:25:14.266 INFO:tasks.cephadm:Adding mon.smithi186 on smithi186 2024-01-27T23:25:14.266 DEBUG:teuthology.orchestra.run.smithi186:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch apply mon '2;smithi073:172.21.15.73=smithi073;smithi186:172.21.15.186=smithi186' 2024-01-27T23:25:15.603 INFO:teuthology.orchestra.run.smithi186.stdout:Scheduled mon update... 2024-01-27T23:25:15.995 DEBUG:teuthology.orchestra.run.smithi186:mon.smithi186> sudo journalctl -f -n 0 -u ceph-0959bd62-bd6b-11ee-95b2-87774f69a715@mon.smithi186.service 2024-01-27T23:25:15.998 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-01-27T23:25:15.998 DEBUG:teuthology.orchestra.run.smithi186:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph mon dump -f json 2024-01-27T23:25:16.026 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:-- Logs begin at Sat 2024-01-27 23:13:18 UTC. -- 2024-01-27T23:25:16.786 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:15.610366+0000 mgr.smithi073.msdoog (mgr.14182) 7 : audit [DBG] from='client.14194 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "2;smithi073:172.21.15.73=smithi073;smithi186:172.21.15.186=smithi186", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:25:16.786 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:25:15.612218+0000 mgr.smithi073.msdoog (mgr.14182) 8 : cephadm [INF] Saving service mon spec with placement smithi073:172.21.15.73=smithi073;smithi186:172.21.15.186=smithi186;count:2 2024-01-27T23:25:16.786 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:15.614461+0000 mon.smithi073 (mon.0) 146 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:25:17.421 INFO:teuthology.orchestra.run.smithi186.stdout: 2024-01-27T23:25:17.422 INFO:teuthology.orchestra.run.smithi186.stdout:{"epoch":1,"fsid":"0959bd62-bd6b-11ee-95b2-87774f69a715","modified":"2024-01-27T23:23:39.106368Z","created":"2024-01-27T23:23:39.106368Z","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":"smithi073","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:3300","nonce":0},{"type":"v1","addr":"172.21.15.73:6789","nonce":0}]},"addr":"172.21.15.73:6789/0","public_addr":"172.21.15.73:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-01-27T23:25:17.423 INFO:teuthology.orchestra.run.smithi186.stderr:dumped monmap epoch 1 2024-01-27T23:25:18.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:17 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:17.433047+0000 mon.smithi073 (mon.0) 147 : audit [DBG] from='client.? 172.21.15.186:0/549465575' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-01-27T23:25:18.818 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-01-27T23:25:18.818 DEBUG:teuthology.orchestra.run.smithi186:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph mon dump -f json 2024-01-27T23:25:19.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:18 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:17.679382+0000 mon.smithi073 (mon.0) 148 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:25:19.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:18 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:17.680507+0000 mon.smithi073 (mon.0) 149 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:25:19.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:18 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:18.119616+0000 mon.smithi073 (mon.0) 150 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:25:19.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:18 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:18.388804+0000 mon.smithi073 (mon.0) 151 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:25:20.735 INFO:teuthology.orchestra.run.smithi186.stdout: 2024-01-27T23:25:20.735 INFO:teuthology.orchestra.run.smithi186.stdout:{"epoch":1,"fsid":"0959bd62-bd6b-11ee-95b2-87774f69a715","modified":"2024-01-27T23:23:39.106368Z","created":"2024-01-27T23:23:39.106368Z","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":"smithi073","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:3300","nonce":0},{"type":"v1","addr":"172.21.15.73:6789","nonce":0}]},"addr":"172.21.15.73:6789/0","public_addr":"172.21.15.73:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-01-27T23:25:20.737 INFO:teuthology.orchestra.run.smithi186.stderr:dumped monmap epoch 1 2024-01-27T23:25:21.303 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:19.981861+0000 mon.smithi073 (mon.0) 152 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:25:21.303 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:20.746442+0000 mon.smithi073 (mon.0) 153 : audit [DBG] from='client.? 172.21.15.186:0/2055402906' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-01-27T23:25:22.280 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-01-27T23:25:22.280 DEBUG:teuthology.orchestra.run.smithi186:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph mon dump -f json 2024-01-27T23:25:22.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:22 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:21.334024+0000 mon.smithi073 (mon.0) 154 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:25:22.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:22 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:21.672252+0000 mon.smithi073 (mon.0) 155 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:25:22.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:22 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:21.673076+0000 mon.smithi073 (mon.0) 156 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config rm", "who": "osd/host:smithi186", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:25:22.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:22 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:21.674229+0000 mon.smithi073 (mon.0) 157 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:25:22.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:22 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:21.675034+0000 mon.smithi073 (mon.0) 158 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:25:22.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:22 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:25:21.676496+0000 mgr.smithi073.msdoog (mgr.14182) 9 : cephadm [INF] Updating smithi186:/etc/ceph/ceph.conf 2024-01-27T23:25:22.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:22 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:22.046446+0000 mon.smithi073 (mon.0) 159 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:25:22.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:22 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:22.049256+0000 mon.smithi073 (mon.0) 160 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:25:22.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:22 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:22.051321+0000 mon.smithi073 (mon.0) 161 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi186", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-01-27T23:25:22.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:22 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:22.053266+0000 mon.smithi073 (mon.0) 162 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi186", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-01-27T23:25:22.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:22 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:22.054170+0000 mon.smithi073 (mon.0) 163 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:25:22.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:22 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:22.108954+0000 mon.smithi073 (mon.0) 164 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:25:23.802 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:23 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:25:21.943077+0000 mgr.smithi073.msdoog (mgr.14182) 10 : cephadm [INF] Updating smithi186:/etc/ceph/ceph.client.admin.keyring 2024-01-27T23:25:23.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:23 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:25:22.054912+0000 mgr.smithi073.msdoog (mgr.14182) 11 : cephadm [INF] Deploying daemon crash.smithi186 on smithi186 2024-01-27T23:25:25.148 INFO:teuthology.orchestra.run.smithi186.stdout: 2024-01-27T23:25:25.148 INFO:teuthology.orchestra.run.smithi186.stdout:{"epoch":1,"fsid":"0959bd62-bd6b-11ee-95b2-87774f69a715","modified":"2024-01-27T23:23:39.106368Z","created":"2024-01-27T23:23:39.106368Z","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":"smithi073","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:3300","nonce":0},{"type":"v1","addr":"172.21.15.73:6789","nonce":0}]},"addr":"172.21.15.73:6789/0","public_addr":"172.21.15.73:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-01-27T23:25:25.149 INFO:teuthology.orchestra.run.smithi186.stderr:dumped monmap epoch 1 2024-01-27T23:25:25.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:25 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:25.158306+0000 mon.smithi073 (mon.0) 165 : audit [DBG] from='client.? 172.21.15.186:0/156425875' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-01-27T23:25:26.475 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-01-27T23:25:26.476 DEBUG:teuthology.orchestra.run.smithi186:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph mon dump -f json 2024-01-27T23:25:27.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:26 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:25.602953+0000 mon.smithi073 (mon.0) 166 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:25:27.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:26 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:25.605200+0000 mon.smithi073 (mon.0) 167 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi186.vsupqe", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-01-27T23:25:27.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:26 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:25.607933+0000 mon.smithi073 (mon.0) 168 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi186.vsupqe", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-01-27T23:25:27.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:26 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:25.608680+0000 mon.smithi073 (mon.0) 169 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "mgr services"}]: dispatch 2024-01-27T23:25:27.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:26 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:25.609552+0000 mon.smithi073 (mon.0) 170 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:25:27.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:26 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:25:25.610197+0000 mgr.smithi073.msdoog (mgr.14182) 12 : cephadm [INF] Deploying daemon mgr.smithi186.vsupqe on smithi186 2024-01-27T23:25:28.051 INFO:teuthology.orchestra.run.smithi186.stdout: 2024-01-27T23:25:28.051 INFO:teuthology.orchestra.run.smithi186.stdout:{"epoch":1,"fsid":"0959bd62-bd6b-11ee-95b2-87774f69a715","modified":"2024-01-27T23:23:39.106368Z","created":"2024-01-27T23:23:39.106368Z","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":"smithi073","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:3300","nonce":0},{"type":"v1","addr":"172.21.15.73:6789","nonce":0}]},"addr":"172.21.15.73:6789/0","public_addr":"172.21.15.73:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-01-27T23:25:28.054 INFO:teuthology.orchestra.run.smithi186.stderr:dumped monmap epoch 1 2024-01-27T23:25:28.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:25:26.975412+0000 mgr.smithi073.msdoog (mgr.14182) 13 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:25:28.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:27.112785+0000 mon.smithi073 (mon.0) 171 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:25:28.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:27.317017+0000 mon.smithi073 (mon.0) 172 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:25:28.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:27.319108+0000 mon.smithi073 (mon.0) 173 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-01-27T23:25:28.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:27.319954+0000 mon.smithi073 (mon.0) 174 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:25:28.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:25:27.320653+0000 mgr.smithi073.msdoog (mgr.14182) 14 : cephadm [INF] Deploying daemon mon.smithi186 on smithi186 2024-01-27T23:25:28.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:28.062445+0000 mon.smithi073 (mon.0) 175 : audit [DBG] from='client.? 172.21.15.186:0/1696781722' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-01-27T23:25:29.722 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 systemd[1]: Starting Ceph mon.smithi186 for 0959bd62-bd6b-11ee-95b2-87774f69a715... 2024-01-27T23:25:29.797 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-01-27T23:25:29.797 DEBUG:teuthology.orchestra.run.smithi186:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph mon dump -f json 2024-01-27T23:25:30.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.820+0000 7f6933091880 0 set uid:gid to 167:167 (ceph:ceph) 2024-01-27T23:25:30.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.820+0000 7f6933091880 0 ceph version 16.2.14-508-ga72a5dac (a72a5dace2353a54147d37bd2699a2a482507966) pacific (stable), process ceph-mon, pid 7 2024-01-27T23:25:30.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.820+0000 7f6933091880 0 pidfile_write: ignore empty --pid-file 2024-01-27T23:25:30.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.824+0000 7f6933091880 0 load: jerasure load: lrc load: isa 2024-01-27T23:25:30.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: RocksDB version: 6.8.1 2024-01-27T23:25:30.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 2024-01-27T23:25:30.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Git sha rocksdb_build_git_sha:@0@ 2024-01-27T23:25:30.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Compile date Jan 25 2024 2024-01-27T23:25:30.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: DB SUMMARY 2024-01-27T23:25:30.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 2024-01-27T23:25:30.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: CURRENT file: CURRENT 2024-01-27T23:25:30.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 2024-01-27T23:25:30.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: IDENTITY file: IDENTITY 2024-01-27T23:25:30.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 2024-01-27T23:25:30.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: MANIFEST file: MANIFEST-000001 size: 13 Bytes 2024-01-27T23:25:30.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 2024-01-27T23:25:30.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi186/store.db dir, Total Num: 0, files: 2024-01-27T23:25:30.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 2024-01-27T23:25:30.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi186/store.db: 000003.log size: 511 ; 2024-01-27T23:25:30.005 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 2024-01-27T23:25:30.005 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.error_if_exists: 0 2024-01-27T23:25:30.005 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.create_if_missing: 0 2024-01-27T23:25:30.005 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.paranoid_checks: 1 2024-01-27T23:25:30.005 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.env: 0x558d161ea080 2024-01-27T23:25:30.005 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.fs: Posix File System 2024-01-27T23:25:30.005 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.info_log: 0x558d18319d20 2024-01-27T23:25:30.005 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.max_file_opening_threads: 16 2024-01-27T23:25:30.005 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.statistics: (nil) 2024-01-27T23:25:30.005 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.use_fsync: 0 2024-01-27T23:25:30.005 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.max_log_file_size: 0 2024-01-27T23:25:30.005 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-01-27T23:25:30.005 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.log_file_time_to_roll: 0 2024-01-27T23:25:30.005 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.keep_log_file_num: 1000 2024-01-27T23:25:30.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.recycle_log_file_num: 0 2024-01-27T23:25:30.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.allow_fallocate: 1 2024-01-27T23:25:30.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.allow_mmap_reads: 0 2024-01-27T23:25:30.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.allow_mmap_writes: 0 2024-01-27T23:25:30.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.use_direct_reads: 0 2024-01-27T23:25:30.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-01-27T23:25:30.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.create_missing_column_families: 0 2024-01-27T23:25:30.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.db_log_dir: 2024-01-27T23:25:30.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.wal_dir: /var/lib/ceph/mon/ceph-smithi186/store.db 2024-01-27T23:25:30.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.table_cache_numshardbits: 6 2024-01-27T23:25:30.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.max_subcompactions: 1 2024-01-27T23:25:30.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.max_background_flushes: -1 2024-01-27T23:25:30.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-01-27T23:25:30.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-01-27T23:25:30.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-01-27T23:25:30.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-01-27T23:25:30.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-01-27T23:25:30.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.advise_random_on_open: 1 2024-01-27T23:25:30.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.db_write_buffer_size: 0 2024-01-27T23:25:30.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.write_buffer_manager: 0x558d18f70480 2024-01-27T23:25:30.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-01-27T23:25:30.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.new_table_reader_for_compaction_inputs: 0 2024-01-27T23:25:30.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-01-27T23:25:30.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.use_adaptive_mutex: 0 2024-01-27T23:25:30.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.rate_limiter: (nil) 2024-01-27T23:25:30.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-01-27T23:25:30.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.wal_recovery_mode: 2 2024-01-27T23:25:30.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.enable_thread_tracking: 0 2024-01-27T23:25:30.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.enable_pipelined_write: 0 2024-01-27T23:25:30.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.unordered_write: 0 2024-01-27T23:25:30.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-01-27T23:25:30.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-01-27T23:25:30.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-01-27T23:25:30.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-01-27T23:25:30.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.row_cache: None 2024-01-27T23:25:30.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.wal_filter: None 2024-01-27T23:25:30.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-01-27T23:25:30.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.allow_ingest_behind: 0 2024-01-27T23:25:30.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.preserve_deletes: 0 2024-01-27T23:25:30.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.two_write_queues: 0 2024-01-27T23:25:30.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.manual_wal_flush: 0 2024-01-27T23:25:30.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.atomic_flush: 0 2024-01-27T23:25:30.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-01-27T23:25:30.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.persist_stats_to_disk: 0 2024-01-27T23:25:30.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-01-27T23:25:30.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.log_readahead_size: 0 2024-01-27T23:25:30.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.sst_file_checksum_func: Unknown 2024-01-27T23:25:30.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.max_background_jobs: 2 2024-01-27T23:25:30.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.max_background_compactions: -1 2024-01-27T23:25:30.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-01-27T23:25:30.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-01-27T23:25:30.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.delayed_write_rate : 16777216 2024-01-27T23:25:30.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.max_total_wal_size: 0 2024-01-27T23:25:30.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-01-27T23:25:30.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.stats_dump_period_sec: 600 2024-01-27T23:25:30.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.stats_persist_period_sec: 600 2024-01-27T23:25:30.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-01-27T23:25:30.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.max_open_files: -1 2024-01-27T23:25:30.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.bytes_per_sync: 0 2024-01-27T23:25:30.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-01-27T23:25:30.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-01-27T23:25:30.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Options.compaction_readahead_size: 0 2024-01-27T23:25:30.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Compression algorithms supported: 2024-01-27T23:25:30.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-01-27T23:25:30.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: kZSTD supported: 0 2024-01-27T23:25:30.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: kXpressCompression supported: 0 2024-01-27T23:25:30.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: kLZ4HCCompression supported: 1 2024-01-27T23:25:30.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: kLZ4Compression supported: 1 2024-01-27T23:25:30.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: kBZip2Compression supported: 0 2024-01-27T23:25:30.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: kZlibCompression supported: 1 2024-01-27T23:25:30.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: kSnappyCompression supported: 1 2024-01-27T23:25:30.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-01-27T23:25:30.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.825+0000 7f6933091880 4 rocksdb: [version_set.cc:4413] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi186/store.db/MANIFEST-000001 2024-01-27T23:25:30.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 2024-01-27T23:25:30.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: [column_family.cc:552] --------------- Options for column family [default]: 2024-01-27T23:25:30.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 2024-01-27T23:25:30.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-01-27T23:25:30.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.merge_operator: 2024-01-27T23:25:30.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.compaction_filter: None 2024-01-27T23:25:30.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.compaction_filter_factory: None 2024-01-27T23:25:30.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-01-27T23:25:30.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.table_factory: BlockBasedTable 2024-01-27T23:25:30.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x558d182c9d28) 2024-01-27T23:25:30.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cache_index_and_filter_blocks: 1 2024-01-27T23:25:30.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cache_index_and_filter_blocks_with_high_priority: 0 2024-01-27T23:25:30.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-01-27T23:25:30.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: pin_top_level_index_and_filter: 1 2024-01-27T23:25:30.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: index_type: 0 2024-01-27T23:25:30.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: data_block_index_type: 0 2024-01-27T23:25:30.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: index_shortening: 1 2024-01-27T23:25:30.014 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: data_block_hash_table_util_ratio: 0.750000 2024-01-27T23:25:30.014 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: hash_index_allow_collision: 1 2024-01-27T23:25:30.014 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: checksum: 1 2024-01-27T23:25:30.014 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: no_block_cache: 0 2024-01-27T23:25:30.014 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: block_cache: 0x558d182fef10 2024-01-27T23:25:30.014 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: block_cache_name: BinnedLRUCache 2024-01-27T23:25:30.014 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: block_cache_options: 2024-01-27T23:25:30.014 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: capacity : 536870912 2024-01-27T23:25:30.014 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: num_shard_bits : 4 2024-01-27T23:25:30.014 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: strict_capacity_limit : 0 2024-01-27T23:25:30.014 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: high_pri_pool_ratio: 0.000 2024-01-27T23:25:30.014 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: block_cache_compressed: (nil) 2024-01-27T23:25:30.014 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: persistent_cache: (nil) 2024-01-27T23:25:30.014 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: block_size: 4096 2024-01-27T23:25:30.014 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: block_size_deviation: 10 2024-01-27T23:25:30.014 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: block_restart_interval: 16 2024-01-27T23:25:30.014 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: index_block_restart_interval: 1 2024-01-27T23:25:30.015 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: metadata_block_size: 4096 2024-01-27T23:25:30.015 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: partition_filters: 0 2024-01-27T23:25:30.015 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: use_delta_encoding: 1 2024-01-27T23:25:30.015 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: filter_policy: rocksdb.BuiltinBloomFilter 2024-01-27T23:25:30.015 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: whole_key_filtering: 1 2024-01-27T23:25:30.015 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: verify_compression: 0 2024-01-27T23:25:30.015 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: read_amp_bytes_per_bit: 0 2024-01-27T23:25:30.015 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: format_version: 2 2024-01-27T23:25:30.015 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: enable_index_compression: 1 2024-01-27T23:25:30.015 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: block_align: 0 2024-01-27T23:25:30.015 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 2024-01-27T23:25:30.015 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.write_buffer_size: 33554432 2024-01-27T23:25:30.015 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.max_write_buffer_number: 2 2024-01-27T23:25:30.015 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.compression: NoCompression 2024-01-27T23:25:30.015 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.bottommost_compression: Disabled 2024-01-27T23:25:30.015 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.prefix_extractor: nullptr 2024-01-27T23:25:30.015 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-01-27T23:25:30.016 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.num_levels: 7 2024-01-27T23:25:30.016 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-01-27T23:25:30.016 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-01-27T23:25:30.016 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-01-27T23:25:30.016 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-01-27T23:25:30.016 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-01-27T23:25:30.016 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-01-27T23:25:30.016 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-01-27T23:25:30.016 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-01-27T23:25:30.016 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-01-27T23:25:30.016 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.compression_opts.window_bits: -14 2024-01-27T23:25:30.016 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.compression_opts.level: 32767 2024-01-27T23:25:30.016 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.compression_opts.strategy: 0 2024-01-27T23:25:30.016 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-01-27T23:25:30.016 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-01-27T23:25:30.017 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.compression_opts.enabled: false 2024-01-27T23:25:30.017 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-01-27T23:25:30.017 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-01-27T23:25:30.017 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-01-27T23:25:30.017 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.target_file_size_base: 67108864 2024-01-27T23:25:30.017 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.target_file_size_multiplier: 1 2024-01-27T23:25:30.017 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-01-27T23:25:30.017 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-01-27T23:25:30.017 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-01-27T23:25:30.017 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-01-27T23:25:30.017 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-01-27T23:25:30.017 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-01-27T23:25:30.017 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-01-27T23:25:30.017 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-01-27T23:25:30.018 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-01-27T23:25:30.018 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-01-27T23:25:30.018 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-01-27T23:25:30.018 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-01-27T23:25:30.018 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.arena_block_size: 4194304 2024-01-27T23:25:30.018 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-01-27T23:25:30.018 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-01-27T23:25:30.018 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.rate_limit_delay_max_milliseconds: 100 2024-01-27T23:25:30.018 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.disable_auto_compactions: 0 2024-01-27T23:25:30.018 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-01-27T23:25:30.018 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-01-27T23:25:30.018 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-01-27T23:25:30.018 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-01-27T23:25:30.018 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-01-27T23:25:30.018 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-01-27T23:25:30.018 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-01-27T23:25:30.019 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-01-27T23:25:30.019 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-01-27T23:25:30.019 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-01-27T23:25:30.019 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.table_properties_collectors: 2024-01-27T23:25:30.019 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.inplace_update_support: 0 2024-01-27T23:25:30.019 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-01-27T23:25:30.019 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-01-27T23:25:30.019 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-01-27T23:25:30.019 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.memtable_huge_page_size: 0 2024-01-27T23:25:30.019 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.bloom_locality: 0 2024-01-27T23:25:30.019 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.max_successive_merges: 0 2024-01-27T23:25:30.019 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-01-27T23:25:30.019 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.paranoid_file_checks: 0 2024-01-27T23:25:30.019 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.force_consistency_checks: 0 2024-01-27T23:25:30.019 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.report_bg_io_stats: 0 2024-01-27T23:25:30.019 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.ttl: 2592000 2024-01-27T23:25:30.020 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-01-27T23:25:30.020 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: [version_set.cc:4568] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi186/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 2024-01-27T23:25:30.020 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 2024-01-27T23:25:30.020 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: [version_set.cc:4577] Column family [default] (ID 0), log number is 0 2024-01-27T23:25:30.020 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 2024-01-27T23:25:30.020 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1706397929827754, "job": 1, "event": "recovery_started", "log_files": [3]} 2024-01-27T23:25:30.020 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 4 rocksdb: [db_impl/db_impl_open.cc:760] Recovering log #3 mode 2 2024-01-27T23:25:30.020 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.826+0000 7f6933091880 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. 2024-01-27T23:25:30.020 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.827+0000 7f6933091880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1706397929828320, "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": 1706397929, "oldest_key_time": 3, "file_creation_time": 0}} 2024-01-27T23:25:30.020 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.827+0000 7f6933091880 4 rocksdb: [version_set.cc:3826] Creating manifest 5 2024-01-27T23:25:30.020 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 2024-01-27T23:25:30.020 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.827+0000 7f6933091880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1706397929828755, "job": 1, "event": "recovery_finished"} 2024-01-27T23:25:30.020 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.828+0000 7f6933091880 4 rocksdb: DB pointer 0x558d183c7800 2024-01-27T23:25:30.020 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.828+0000 7f6919e83700 4 rocksdb: [db_impl/db_impl.cc:850] ------- DUMPING STATS ------- 2024-01-27T23:25:30.020 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.828+0000 7f6919e83700 4 rocksdb: [db_impl/db_impl.cc:851] 2024-01-27T23:25:30.020 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: ** DB Stats ** 2024-01-27T23:25:30.021 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Uptime(secs): 0.0 total, 0.0 interval 2024-01-27T23:25:30.021 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-01-27T23:25:30.021 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-01-27T23:25:30.021 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-01-27T23:25:30.021 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-01-27T23:25:30.021 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 MB, 0.00 MB/s 2024-01-27T23:25:30.021 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-01-27T23:25:30.021 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 2024-01-27T23:25:30.021 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: ** Compaction Stats [default] ** 2024-01-27T23:25:30.021 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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 2024-01-27T23:25:30.021 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-01-27T23:25:30.021 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: L0 1/0 1.40 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.6 0.00 0.00 1 0.001 0 0 2024-01-27T23:25:30.021 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Sum 1/0 1.40 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.6 0.00 0.00 1 0.001 0 0 2024-01-27T23:25:30.021 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.6 0.00 0.00 1 0.001 0 0 2024-01-27T23:25:30.021 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 2024-01-27T23:25:30.022 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: ** Compaction Stats [default] ** 2024-01-27T23:25:30.022 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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 2024-01-27T23:25:30.022 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-01-27T23:25:30.022 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.6 0.00 0.00 1 0.001 0 0 2024-01-27T23:25:30.022 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Uptime(secs): 0.0 total, 0.0 interval 2024-01-27T23:25:30.022 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Flush(GB): cumulative 0.000, interval 0.000 2024-01-27T23:25:30.022 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: AddFile(GB): cumulative 0.000, interval 0.000 2024-01-27T23:25:30.022 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: AddFile(Total Files): cumulative 0, interval 0 2024-01-27T23:25:30.022 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: AddFile(L0 Files): cumulative 0, interval 0 2024-01-27T23:25:30.022 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: AddFile(Keys): cumulative 0, interval 0 2024-01-27T23:25:30.022 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 bash[36595]: 665ccb2ff19dbf9566917c3aa0ff524b1f87a21fafd8ae6080adad2ca199a23f 2024-01-27T23:25:30.022 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Cumulative compaction: 0.00 GB write, 0.54 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-01-27T23:25:30.022 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Interval compaction: 0.00 GB write, 0.54 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-01-27T23:25:30.022 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-01-27T23:25:30.022 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 2024-01-27T23:25:30.022 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: ** File Read Latency Histogram By Level [default] ** 2024-01-27T23:25:30.022 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 2024-01-27T23:25:30.023 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: ** Compaction Stats [default] ** 2024-01-27T23:25:30.023 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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 2024-01-27T23:25:30.023 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-01-27T23:25:30.023 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: L0 1/0 1.40 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.6 0.00 0.00 1 0.001 0 0 2024-01-27T23:25:30.023 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Sum 1/0 1.40 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.6 0.00 0.00 1 0.001 0 0 2024-01-27T23:25:30.023 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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 2024-01-27T23:25:30.023 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 2024-01-27T23:25:30.023 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: ** Compaction Stats [default] ** 2024-01-27T23:25:30.023 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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 2024-01-27T23:25:30.023 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-01-27T23:25:30.023 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.6 0.00 0.00 1 0.001 0 0 2024-01-27T23:25:30.023 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Uptime(secs): 0.0 total, 0.0 interval 2024-01-27T23:25:30.023 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Flush(GB): cumulative 0.000, interval 0.000 2024-01-27T23:25:30.023 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: AddFile(GB): cumulative 0.000, interval 0.000 2024-01-27T23:25:30.023 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: AddFile(Total Files): cumulative 0, interval 0 2024-01-27T23:25:30.023 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: AddFile(L0 Files): cumulative 0, interval 0 2024-01-27T23:25:30.023 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: AddFile(Keys): cumulative 0, interval 0 2024-01-27T23:25:30.024 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Cumulative compaction: 0.00 GB write, 0.53 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-01-27T23:25:30.024 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-01-27T23:25:30.024 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-01-27T23:25:30.024 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 2024-01-27T23:25:30.024 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: ** File Read Latency Histogram By Level [default] ** 2024-01-27T23:25:30.024 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 2024-01-27T23:25:30.024 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.828+0000 7f6933091880 0 mon.smithi186 does not exist in monmap, will attempt to join an existing cluster 2024-01-27T23:25:30.024 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.828+0000 7f6933091880 0 using public_addr v2:172.21.15.186:0/0 -> [v2:172.21.15.186:3300/0,v1:172.21.15.186:6789/0] 2024-01-27T23:25:30.024 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.829+0000 7f6933091880 0 starting mon.smithi186 rank -1 at public addrs [v2:172.21.15.186:3300/0,v1:172.21.15.186:6789/0] at bind addrs [v2:172.21.15.186:3300/0,v1:172.21.15.186:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi186 fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 2024-01-27T23:25:30.024 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.830+0000 7f6933091880 1 mon.smithi186@-1(???) e0 preinit fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 2024-01-27T23:25:30.024 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 systemd[1]: Started Ceph mon.smithi186 for 0959bd62-bd6b-11ee-95b2-87774f69a715. 2024-01-27T23:25:30.024 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.856+0000 7f691c688700 0 mon.smithi186@-1(synchronizing).mds e1 new map 2024-01-27T23:25:30.024 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.856+0000 7f691c688700 0 mon.smithi186@-1(synchronizing).mds e1 print_map 2024-01-27T23:25:30.024 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: e1 2024-01-27T23:25:30.024 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: enable_multiple, ever_enabled_multiple: 1,1 2024-01-27T23:25:30.024 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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} 2024-01-27T23:25:30.025 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: legacy client fscid: -1 2024-01-27T23:25:30.025 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 2024-01-27T23:25:30.025 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: No filesystems configured 2024-01-27T23:25:30.025 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 2024-01-27T23:25:30.025 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.856+0000 7f691c688700 1 mon.smithi186@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2024-01-27T23:25:30.025 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.857+0000 7f691c688700 1 mon.smithi186@-1(synchronizing).osd e0 register_cache_with_pcm pcm target: 2147483648 pcm max: 1020054732 pcm min: 134217728 inc_osd_cache size: 1 2024-01-27T23:25:30.025 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.857+0000 7f691c688700 1 mon.smithi186@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2024-01-27T23:25:30.025 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.857+0000 7f691c688700 1 mon.smithi186@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2024-01-27T23:25:30.025 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.857+0000 7f691c688700 1 mon.smithi186@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2024-01-27T23:25:30.025 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.857+0000 7f691c688700 1 mon.smithi186@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2024-01-27T23:25:30.025 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.857+0000 7f691c688700 1 mon.smithi186@-1(synchronizing).osd e5 e5: 0 total, 0 up, 0 in 2024-01-27T23:25:30.025 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.857+0000 7f691c688700 0 mon.smithi186@-1(synchronizing).osd e5 crush map has features 3314932999778484224, adjusting msgr requires 2024-01-27T23:25:30.025 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.857+0000 7f691c688700 0 mon.smithi186@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-01-27T23:25:30.025 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.857+0000 7f691c688700 0 mon.smithi186@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-01-27T23:25:30.025 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.857+0000 7f691c688700 0 mon.smithi186@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-01-27T23:25:30.025 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:25:26.975412+0000 mgr.smithi073.msdoog (mgr.14182) 13 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:25:30.026 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:27.112785+0000 mon.smithi073 (mon.0) 171 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:25:30.026 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:27.317017+0000 mon.smithi073 (mon.0) 172 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:25:30.026 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:27.319108+0000 mon.smithi073 (mon.0) 173 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-01-27T23:25:30.026 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:27.319954+0000 mon.smithi073 (mon.0) 174 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:25:30.026 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:25:27.320653+0000 mgr.smithi073.msdoog (mgr.14182) 14 : cephadm [INF] Deploying daemon mon.smithi186 on smithi186 2024-01-27T23:25:30.026 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:28.062445+0000 mon.smithi073 (mon.0) 175 : audit [DBG] from='client.? 172.21.15.186:0/1696781722' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-01-27T23:25:30.026 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:25:29.858+0000 7f691c688700 1 mon.smithi186@-1(synchronizing).paxosservice(auth 1..6) refresh upgraded, format 0 -> 3 2024-01-27T23:25:35.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:34 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:29.870452+0000 mon.smithi073 (mon.0) 177 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "mon metadata", "id": "smithi073"}]: dispatch 2024-01-27T23:25:35.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:34 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:29.870669+0000 mon.smithi073 (mon.0) 178 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "mon metadata", "id": "smithi186"}]: dispatch 2024-01-27T23:25:35.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:34 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:25:29.870802+0000 mon.smithi073 (mon.0) 179 : cluster [INF] mon.smithi073 calling monitor election 2024-01-27T23:25:35.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:34 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:30.863643+0000 mon.smithi073 (mon.0) 180 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "mon metadata", "id": "smithi186"}]: dispatch 2024-01-27T23:25:35.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:34 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:25:30.976134+0000 mgr.smithi073.msdoog (mgr.14182) 16 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:25:35.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:34 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:31.863653+0000 mon.smithi073 (mon.0) 181 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "mon metadata", "id": "smithi186"}]: dispatch 2024-01-27T23:25:35.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:34 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:25:31.866056+0000 mon.smithi186 (mon.1) 1 : cluster [INF] mon.smithi186 calling monitor election 2024-01-27T23:25:35.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:34 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:32.823094+0000 mon.smithi073 (mon.0) 182 : audit [DBG] from='mgr.? 172.21.15.186:0/611934803' entity='mgr.smithi186.vsupqe' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi186.vsupqe/crt"}]: dispatch 2024-01-27T23:25:35.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:34 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:32.863572+0000 mon.smithi073 (mon.0) 183 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "mon metadata", "id": "smithi186"}]: dispatch 2024-01-27T23:25:35.254 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:34 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:25:32.976528+0000 mgr.smithi073.msdoog (mgr.14182) 17 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:25:35.254 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:34 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:33.863723+0000 mon.smithi073 (mon.0) 184 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "mon metadata", "id": "smithi186"}]: dispatch 2024-01-27T23:25:35.254 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:34 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:34.864002+0000 mon.smithi073 (mon.0) 185 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "mon metadata", "id": "smithi186"}]: dispatch 2024-01-27T23:25:35.254 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:34 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:25:34.900148+0000 mon.smithi073 (mon.0) 186 : cluster [INF] mon.smithi073 is new leader, mons smithi073,smithi186 in quorum (ranks 0,1) 2024-01-27T23:25:35.254 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:34 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:25:34.905218+0000 mon.smithi073 (mon.0) 187 : cluster [DBG] monmap e2: 2 mons at {smithi073=[v2:172.21.15.73:3300/0,v1:172.21.15.73:6789/0],smithi186=[v2:172.21.15.186:3300/0,v1:172.21.15.186:6789/0]} removed_ranks: {} 2024-01-27T23:25:35.254 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:34 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:25:34.905664+0000 mon.smithi073 (mon.0) 188 : cluster [DBG] fsmap 2024-01-27T23:25:35.254 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:34 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:25:34.905689+0000 mon.smithi073 (mon.0) 189 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-01-27T23:25:35.254 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:34 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:25:34.905881+0000 mon.smithi073 (mon.0) 190 : cluster [DBG] mgrmap e17: smithi073.msdoog(active, since 27s) 2024-01-27T23:25:35.254 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:34 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:25:34.906871+0000 mon.smithi073 (mon.0) 191 : cluster [DBG] Standby manager daemon smithi186.vsupqe started 2024-01-27T23:25:35.254 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:34 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:34.907705+0000 mon.smithi073 (mon.0) 192 : audit [DBG] from='mgr.? 172.21.15.186:0/611934803' entity='mgr.smithi186.vsupqe' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-01-27T23:25:35.254 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:34 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:25:34.910540+0000 mon.smithi073 (mon.0) 193 : cluster [INF] overall HEALTH_OK 2024-01-27T23:25:35.254 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:34 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:34.912076+0000 mon.smithi073 (mon.0) 194 : audit [DBG] from='mgr.? 172.21.15.186:0/611934803' entity='mgr.smithi186.vsupqe' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi186.vsupqe/key"}]: dispatch 2024-01-27T23:25:35.254 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:34 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:34.912449+0000 mon.smithi073 (mon.0) 195 : audit [DBG] from='mgr.? 172.21.15.186:0/611934803' entity='mgr.smithi186.vsupqe' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-01-27T23:25:35.254 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:34 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:34.916066+0000 mon.smithi073 (mon.0) 196 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:25:35.254 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:34 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:34.922080+0000 mon.smithi073 (mon.0) 197 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:25:35.303 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:34 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:29.870452+0000 mon.smithi073 (mon.0) 177 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "mon metadata", "id": "smithi073"}]: dispatch 2024-01-27T23:25:35.303 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:34 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:29.870669+0000 mon.smithi073 (mon.0) 178 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "mon metadata", "id": "smithi186"}]: dispatch 2024-01-27T23:25:35.303 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:34 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:25:29.870802+0000 mon.smithi073 (mon.0) 179 : cluster [INF] mon.smithi073 calling monitor election 2024-01-27T23:25:35.304 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:34 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:30.863643+0000 mon.smithi073 (mon.0) 180 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "mon metadata", "id": "smithi186"}]: dispatch 2024-01-27T23:25:35.304 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:34 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:25:30.976134+0000 mgr.smithi073.msdoog (mgr.14182) 16 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:25:35.304 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:34 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:31.863653+0000 mon.smithi073 (mon.0) 181 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "mon metadata", "id": "smithi186"}]: dispatch 2024-01-27T23:25:35.304 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:34 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:25:31.866056+0000 mon.smithi186 (mon.1) 1 : cluster [INF] mon.smithi186 calling monitor election 2024-01-27T23:25:35.304 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:34 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:32.823094+0000 mon.smithi073 (mon.0) 182 : audit [DBG] from='mgr.? 172.21.15.186:0/611934803' entity='mgr.smithi186.vsupqe' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi186.vsupqe/crt"}]: dispatch 2024-01-27T23:25:35.304 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:34 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:32.863572+0000 mon.smithi073 (mon.0) 183 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "mon metadata", "id": "smithi186"}]: dispatch 2024-01-27T23:25:35.304 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:34 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:25:32.976528+0000 mgr.smithi073.msdoog (mgr.14182) 17 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:25:35.304 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:34 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:33.863723+0000 mon.smithi073 (mon.0) 184 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "mon metadata", "id": "smithi186"}]: dispatch 2024-01-27T23:25:35.304 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:34 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:34.864002+0000 mon.smithi073 (mon.0) 185 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "mon metadata", "id": "smithi186"}]: dispatch 2024-01-27T23:25:35.304 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:34 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:25:34.900148+0000 mon.smithi073 (mon.0) 186 : cluster [INF] mon.smithi073 is new leader, mons smithi073,smithi186 in quorum (ranks 0,1) 2024-01-27T23:25:35.304 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:34 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:25:34.905218+0000 mon.smithi073 (mon.0) 187 : cluster [DBG] monmap e2: 2 mons at {smithi073=[v2:172.21.15.73:3300/0,v1:172.21.15.73:6789/0],smithi186=[v2:172.21.15.186:3300/0,v1:172.21.15.186:6789/0]} removed_ranks: {} 2024-01-27T23:25:35.304 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:34 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:25:34.905664+0000 mon.smithi073 (mon.0) 188 : cluster [DBG] fsmap 2024-01-27T23:25:35.305 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:34 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:25:34.905689+0000 mon.smithi073 (mon.0) 189 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-01-27T23:25:35.305 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:34 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:25:34.905881+0000 mon.smithi073 (mon.0) 190 : cluster [DBG] mgrmap e17: smithi073.msdoog(active, since 27s) 2024-01-27T23:25:35.305 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:34 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:25:34.906871+0000 mon.smithi073 (mon.0) 191 : cluster [DBG] Standby manager daemon smithi186.vsupqe started 2024-01-27T23:25:35.305 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:34 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:34.907705+0000 mon.smithi073 (mon.0) 192 : audit [DBG] from='mgr.? 172.21.15.186:0/611934803' entity='mgr.smithi186.vsupqe' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-01-27T23:25:35.305 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:34 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:25:34.910540+0000 mon.smithi073 (mon.0) 193 : cluster [INF] overall HEALTH_OK 2024-01-27T23:25:35.305 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:34 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:34.912076+0000 mon.smithi073 (mon.0) 194 : audit [DBG] from='mgr.? 172.21.15.186:0/611934803' entity='mgr.smithi186.vsupqe' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi186.vsupqe/key"}]: dispatch 2024-01-27T23:25:35.305 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:34 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:34.912449+0000 mon.smithi073 (mon.0) 195 : audit [DBG] from='mgr.? 172.21.15.186:0/611934803' entity='mgr.smithi186.vsupqe' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-01-27T23:25:35.305 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:34 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:34.916066+0000 mon.smithi073 (mon.0) 196 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:25:35.305 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:34 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:34.922080+0000 mon.smithi073 (mon.0) 197 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:25:35.637 INFO:teuthology.orchestra.run.smithi186.stdout: 2024-01-27T23:25:35.637 INFO:teuthology.orchestra.run.smithi186.stdout:{"epoch":2,"fsid":"0959bd62-bd6b-11ee-95b2-87774f69a715","modified":"2024-01-27T23:25:29.864936Z","created":"2024-01-27T23:23:39.106368Z","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":"smithi073","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:3300","nonce":0},{"type":"v1","addr":"172.21.15.73:6789","nonce":0}]},"addr":"172.21.15.73:6789/0","public_addr":"172.21.15.73:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"smithi186","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.186:3300","nonce":0},{"type":"v1","addr":"172.21.15.186:6789","nonce":0}]},"addr":"172.21.15.186:6789/0","public_addr":"172.21.15.186:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-01-27T23:25:35.638 INFO:teuthology.orchestra.run.smithi186.stderr:dumped monmap epoch 2 2024-01-27T23:25:36.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:35 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:25:34.917611+0000 mgr.smithi073.msdoog (mgr.14182) 18 : cephadm [INF] Deploying daemon node-exporter.smithi186 on smithi186 2024-01-27T23:25:36.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:35 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:25:34.966843+0000 mon.smithi073 (mon.0) 198 : cluster [DBG] mgrmap e18: smithi073.msdoog(active, since 27s), standbys: smithi186.vsupqe 2024-01-27T23:25:36.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:35 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:34.966982+0000 mon.smithi073 (mon.0) 199 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "mgr metadata", "who": "smithi186.vsupqe", "id": "smithi186.vsupqe"}]: dispatch 2024-01-27T23:25:36.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:35 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:25:34.976881+0000 mgr.smithi073.msdoog (mgr.14182) 19 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:25:36.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:35 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:35.646909+0000 mon.smithi073 (mon.0) 200 : audit [DBG] from='client.? 172.21.15.186:0/2857535576' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-01-27T23:25:36.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:35 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:35.864110+0000 mon.smithi073 (mon.0) 201 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "mon metadata", "id": "smithi186"}]: dispatch 2024-01-27T23:25:36.303 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:35 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:25:34.917611+0000 mgr.smithi073.msdoog (mgr.14182) 18 : cephadm [INF] Deploying daemon node-exporter.smithi186 on smithi186 2024-01-27T23:25:36.303 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:35 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:25:34.966843+0000 mon.smithi073 (mon.0) 198 : cluster [DBG] mgrmap e18: smithi073.msdoog(active, since 27s), standbys: smithi186.vsupqe 2024-01-27T23:25:36.303 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:35 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:34.966982+0000 mon.smithi073 (mon.0) 199 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "mgr metadata", "who": "smithi186.vsupqe", "id": "smithi186.vsupqe"}]: dispatch 2024-01-27T23:25:36.303 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:35 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:25:34.976881+0000 mgr.smithi073.msdoog (mgr.14182) 19 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:25:36.303 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:35 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:35.646909+0000 mon.smithi073 (mon.0) 200 : audit [DBG] from='client.? 172.21.15.186:0/2857535576' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-01-27T23:25:36.303 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:35 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:35.864110+0000 mon.smithi073 (mon.0) 201 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "mon metadata", "id": "smithi186"}]: dispatch 2024-01-27T23:25:36.767 INFO:tasks.cephadm:Generating final ceph.conf file... 2024-01-27T23:25:36.767 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph config generate-minimal-conf 2024-01-27T23:25:38.075 INFO:teuthology.orchestra.run.smithi073.stdout:# minimal ceph.conf for 0959bd62-bd6b-11ee-95b2-87774f69a715 2024-01-27T23:25:38.076 INFO:teuthology.orchestra.run.smithi073.stdout:[global] 2024-01-27T23:25:38.076 INFO:teuthology.orchestra.run.smithi073.stdout: fsid = 0959bd62-bd6b-11ee-95b2-87774f69a715 2024-01-27T23:25:38.076 INFO:teuthology.orchestra.run.smithi073.stdout: mon_host = [v2:172.21.15.73:3300/0,v1:172.21.15.73:6789/0] [v2:172.21.15.186:3300/0,v1:172.21.15.186:6789/0] 2024-01-27T23:25:38.302 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:38 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:25:36.977082+0000 mgr.smithi073.msdoog (mgr.14182) 20 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:25:38.438 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2024-01-27T23:25:38.438 DEBUG:teuthology.orchestra.run.smithi073:> set -ex 2024-01-27T23:25:38.438 DEBUG:teuthology.orchestra.run.smithi073:> sudo dd of=/etc/ceph/ceph.conf 2024-01-27T23:25:38.468 DEBUG:teuthology.orchestra.run.smithi073:> set -ex 2024-01-27T23:25:38.468 DEBUG:teuthology.orchestra.run.smithi073:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-01-27T23:25:38.502 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:38 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:25:36.977082+0000 mgr.smithi073.msdoog (mgr.14182) 20 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:25:38.536 DEBUG:teuthology.orchestra.run.smithi186:> set -ex 2024-01-27T23:25:38.536 DEBUG:teuthology.orchestra.run.smithi186:> sudo dd of=/etc/ceph/ceph.conf 2024-01-27T23:25:38.595 DEBUG:teuthology.orchestra.run.smithi186:> set -ex 2024-01-27T23:25:38.596 DEBUG:teuthology.orchestra.run.smithi186:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-01-27T23:25:38.676 INFO:tasks.cephadm:Deploying OSDs... 2024-01-27T23:25:38.676 DEBUG:teuthology.orchestra.run.smithi073:> set -ex 2024-01-27T23:25:38.676 DEBUG:teuthology.orchestra.run.smithi073:> dd if=/scratch_devs of=/dev/stdout 2024-01-27T23:25:38.693 DEBUG:teuthology.misc:devs=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-01-27T23:25:38.693 DEBUG:teuthology.orchestra.run.smithi073:> stat /dev/nvme1n1 2024-01-27T23:25:38.751 INFO:teuthology.orchestra.run.smithi073.stdout: File: /dev/nvme1n1 2024-01-27T23:25:38.751 INFO:teuthology.orchestra.run.smithi073.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-01-27T23:25:38.751 INFO:teuthology.orchestra.run.smithi073.stdout:Device: 6h/6d Inode: 195004 Links: 1 Device type: 103,1 2024-01-27T23:25:38.751 INFO:teuthology.orchestra.run.smithi073.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-01-27T23:25:38.751 INFO:teuthology.orchestra.run.smithi073.stdout:Context: system_u:object_r:nvme_device_t:s0 2024-01-27T23:25:38.751 INFO:teuthology.orchestra.run.smithi073.stdout:Access: 2024-01-27 23:24:37.612844853 +0000 2024-01-27T23:25:38.751 INFO:teuthology.orchestra.run.smithi073.stdout:Modify: 2024-01-27 23:23:08.763919551 +0000 2024-01-27T23:25:38.751 INFO:teuthology.orchestra.run.smithi073.stdout:Change: 2024-01-27 23:23:08.763919551 +0000 2024-01-27T23:25:38.751 INFO:teuthology.orchestra.run.smithi073.stdout: Birth: - 2024-01-27T23:25:38.751 DEBUG:teuthology.orchestra.run.smithi073:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-01-27T23:25:38.816 INFO:teuthology.orchestra.run.smithi073.stderr:1+0 records in 2024-01-27T23:25:38.816 INFO:teuthology.orchestra.run.smithi073.stderr:1+0 records out 2024-01-27T23:25:38.816 INFO:teuthology.orchestra.run.smithi073.stderr:512 bytes copied, 0.00028104 s, 1.8 MB/s 2024-01-27T23:25:38.817 DEBUG:teuthology.orchestra.run.smithi073:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-01-27T23:25:38.875 DEBUG:teuthology.orchestra.run.smithi073:> stat /dev/nvme2n1 2024-01-27T23:25:38.932 INFO:teuthology.orchestra.run.smithi073.stdout: File: /dev/nvme2n1 2024-01-27T23:25:38.932 INFO:teuthology.orchestra.run.smithi073.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-01-27T23:25:38.932 INFO:teuthology.orchestra.run.smithi073.stdout:Device: 6h/6d Inode: 195083 Links: 1 Device type: 103,2 2024-01-27T23:25:38.933 INFO:teuthology.orchestra.run.smithi073.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-01-27T23:25:38.933 INFO:teuthology.orchestra.run.smithi073.stdout:Context: system_u:object_r:nvme_device_t:s0 2024-01-27T23:25:38.933 INFO:teuthology.orchestra.run.smithi073.stdout:Access: 2024-01-27 23:24:37.626844526 +0000 2024-01-27T23:25:38.933 INFO:teuthology.orchestra.run.smithi073.stdout:Modify: 2024-01-27 23:23:08.912916073 +0000 2024-01-27T23:25:38.933 INFO:teuthology.orchestra.run.smithi073.stdout:Change: 2024-01-27 23:23:08.912916073 +0000 2024-01-27T23:25:38.933 INFO:teuthology.orchestra.run.smithi073.stdout: Birth: - 2024-01-27T23:25:38.933 DEBUG:teuthology.orchestra.run.smithi073:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-01-27T23:25:38.998 INFO:teuthology.orchestra.run.smithi073.stderr:1+0 records in 2024-01-27T23:25:38.998 INFO:teuthology.orchestra.run.smithi073.stderr:1+0 records out 2024-01-27T23:25:38.998 INFO:teuthology.orchestra.run.smithi073.stderr:512 bytes copied, 0.000255994 s, 2.0 MB/s 2024-01-27T23:25:38.999 DEBUG:teuthology.orchestra.run.smithi073:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-01-27T23:25:39.057 DEBUG:teuthology.orchestra.run.smithi073:> stat /dev/nvme3n1 2024-01-27T23:25:39.114 INFO:teuthology.orchestra.run.smithi073.stdout: File: /dev/nvme3n1 2024-01-27T23:25:39.114 INFO:teuthology.orchestra.run.smithi073.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-01-27T23:25:39.114 INFO:teuthology.orchestra.run.smithi073.stdout:Device: 6h/6d Inode: 195134 Links: 1 Device type: 103,3 2024-01-27T23:25:39.114 INFO:teuthology.orchestra.run.smithi073.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-01-27T23:25:39.114 INFO:teuthology.orchestra.run.smithi073.stdout:Context: system_u:object_r:nvme_device_t:s0 2024-01-27T23:25:39.114 INFO:teuthology.orchestra.run.smithi073.stdout:Access: 2024-01-27 23:24:37.638844246 +0000 2024-01-27T23:25:39.114 INFO:teuthology.orchestra.run.smithi073.stdout:Modify: 2024-01-27 23:23:09.062912571 +0000 2024-01-27T23:25:39.114 INFO:teuthology.orchestra.run.smithi073.stdout:Change: 2024-01-27 23:23:09.062912571 +0000 2024-01-27T23:25:39.114 INFO:teuthology.orchestra.run.smithi073.stdout: Birth: - 2024-01-27T23:25:39.114 DEBUG:teuthology.orchestra.run.smithi073:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-01-27T23:25:39.177 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:39 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:38.087244+0000 mon.smithi073 (mon.0) 202 : audit [DBG] from='client.? 172.21.15.73:0/3541368733' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:25:39.179 INFO:teuthology.orchestra.run.smithi073.stderr:1+0 records in 2024-01-27T23:25:39.179 INFO:teuthology.orchestra.run.smithi073.stderr:1+0 records out 2024-01-27T23:25:39.179 INFO:teuthology.orchestra.run.smithi073.stderr:512 bytes copied, 0.000184184 s, 2.8 MB/s 2024-01-27T23:25:39.180 DEBUG:teuthology.orchestra.run.smithi073:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-01-27T23:25:39.238 DEBUG:teuthology.orchestra.run.smithi073:> stat /dev/nvme4n1 2024-01-27T23:25:39.295 INFO:teuthology.orchestra.run.smithi073.stdout: File: /dev/nvme4n1 2024-01-27T23:25:39.295 INFO:teuthology.orchestra.run.smithi073.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-01-27T23:25:39.295 INFO:teuthology.orchestra.run.smithi073.stdout:Device: 6h/6d Inode: 195196 Links: 1 Device type: 103,4 2024-01-27T23:25:39.295 INFO:teuthology.orchestra.run.smithi073.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-01-27T23:25:39.296 INFO:teuthology.orchestra.run.smithi073.stdout:Context: system_u:object_r:nvme_device_t:s0 2024-01-27T23:25:39.296 INFO:teuthology.orchestra.run.smithi073.stdout:Access: 2024-01-27 23:24:37.649843989 +0000 2024-01-27T23:25:39.296 INFO:teuthology.orchestra.run.smithi073.stdout:Modify: 2024-01-27 23:23:09.218908929 +0000 2024-01-27T23:25:39.296 INFO:teuthology.orchestra.run.smithi073.stdout:Change: 2024-01-27 23:23:09.218908929 +0000 2024-01-27T23:25:39.296 INFO:teuthology.orchestra.run.smithi073.stdout: Birth: - 2024-01-27T23:25:39.296 DEBUG:teuthology.orchestra.run.smithi073:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-01-27T23:25:39.360 INFO:teuthology.orchestra.run.smithi073.stderr:1+0 records in 2024-01-27T23:25:39.361 INFO:teuthology.orchestra.run.smithi073.stderr:1+0 records out 2024-01-27T23:25:39.361 INFO:teuthology.orchestra.run.smithi073.stderr:512 bytes copied, 0.000254426 s, 2.0 MB/s 2024-01-27T23:25:39.362 DEBUG:teuthology.orchestra.run.smithi073:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-01-27T23:25:39.420 DEBUG:teuthology.orchestra.run.smithi186:> set -ex 2024-01-27T23:25:39.420 DEBUG:teuthology.orchestra.run.smithi186:> dd if=/scratch_devs of=/dev/stdout 2024-01-27T23:25:39.437 DEBUG:teuthology.misc:devs=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-01-27T23:25:39.437 DEBUG:teuthology.orchestra.run.smithi186:> stat /dev/nvme1n1 2024-01-27T23:25:39.494 INFO:teuthology.orchestra.run.smithi186.stdout: File: /dev/nvme1n1 2024-01-27T23:25:39.494 INFO:teuthology.orchestra.run.smithi186.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-01-27T23:25:39.495 INFO:teuthology.orchestra.run.smithi186.stdout:Device: 6h/6d Inode: 199147 Links: 1 Device type: 103,1 2024-01-27T23:25:39.495 INFO:teuthology.orchestra.run.smithi186.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-01-27T23:25:39.495 INFO:teuthology.orchestra.run.smithi186.stdout:Context: system_u:object_r:nvme_device_t:s0 2024-01-27T23:25:39.495 INFO:teuthology.orchestra.run.smithi186.stdout:Access: 2024-01-27 23:25:20.341868908 +0000 2024-01-27T23:25:39.495 INFO:teuthology.orchestra.run.smithi186.stdout:Modify: 2024-01-27 23:23:10.417153317 +0000 2024-01-27T23:25:39.495 INFO:teuthology.orchestra.run.smithi186.stdout:Change: 2024-01-27 23:23:10.417153317 +0000 2024-01-27T23:25:39.495 INFO:teuthology.orchestra.run.smithi186.stdout: Birth: - 2024-01-27T23:25:39.495 DEBUG:teuthology.orchestra.run.smithi186:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-01-27T23:25:39.503 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:39 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:38.087244+0000 mon.smithi073 (mon.0) 202 : audit [DBG] from='client.? 172.21.15.73:0/3541368733' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:25:39.526 INFO:teuthology.orchestra.run.smithi186.stderr:1+0 records in 2024-01-27T23:25:39.527 INFO:teuthology.orchestra.run.smithi186.stderr:1+0 records out 2024-01-27T23:25:39.527 INFO:teuthology.orchestra.run.smithi186.stderr:512 bytes copied, 0.000229947 s, 2.2 MB/s 2024-01-27T23:25:39.528 DEBUG:teuthology.orchestra.run.smithi186:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-01-27T23:25:39.585 DEBUG:teuthology.orchestra.run.smithi186:> stat /dev/nvme2n1 2024-01-27T23:25:39.642 INFO:teuthology.orchestra.run.smithi186.stdout: File: /dev/nvme2n1 2024-01-27T23:25:39.642 INFO:teuthology.orchestra.run.smithi186.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-01-27T23:25:39.642 INFO:teuthology.orchestra.run.smithi186.stdout:Device: 6h/6d Inode: 199256 Links: 1 Device type: 103,2 2024-01-27T23:25:39.642 INFO:teuthology.orchestra.run.smithi186.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-01-27T23:25:39.642 INFO:teuthology.orchestra.run.smithi186.stdout:Context: system_u:object_r:nvme_device_t:s0 2024-01-27T23:25:39.642 INFO:teuthology.orchestra.run.smithi186.stdout:Access: 2024-01-27 23:25:20.352868716 +0000 2024-01-27T23:25:39.643 INFO:teuthology.orchestra.run.smithi186.stdout:Modify: 2024-01-27 23:23:10.568150650 +0000 2024-01-27T23:25:39.643 INFO:teuthology.orchestra.run.smithi186.stdout:Change: 2024-01-27 23:23:10.568150650 +0000 2024-01-27T23:25:39.643 INFO:teuthology.orchestra.run.smithi186.stdout: Birth: - 2024-01-27T23:25:39.643 DEBUG:teuthology.orchestra.run.smithi186:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-01-27T23:25:39.707 INFO:teuthology.orchestra.run.smithi186.stderr:1+0 records in 2024-01-27T23:25:39.708 INFO:teuthology.orchestra.run.smithi186.stderr:1+0 records out 2024-01-27T23:25:39.708 INFO:teuthology.orchestra.run.smithi186.stderr:512 bytes copied, 0.000217995 s, 2.3 MB/s 2024-01-27T23:25:39.709 DEBUG:teuthology.orchestra.run.smithi186:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-01-27T23:25:39.766 DEBUG:teuthology.orchestra.run.smithi186:> stat /dev/nvme3n1 2024-01-27T23:25:39.822 INFO:teuthology.orchestra.run.smithi186.stdout: File: /dev/nvme3n1 2024-01-27T23:25:39.822 INFO:teuthology.orchestra.run.smithi186.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-01-27T23:25:39.822 INFO:teuthology.orchestra.run.smithi186.stdout:Device: 6h/6d Inode: 199336 Links: 1 Device type: 103,3 2024-01-27T23:25:39.822 INFO:teuthology.orchestra.run.smithi186.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-01-27T23:25:39.822 INFO:teuthology.orchestra.run.smithi186.stdout:Context: system_u:object_r:nvme_device_t:s0 2024-01-27T23:25:39.823 INFO:teuthology.orchestra.run.smithi186.stdout:Access: 2024-01-27 23:25:20.363868523 +0000 2024-01-27T23:25:39.823 INFO:teuthology.orchestra.run.smithi186.stdout:Modify: 2024-01-27 23:23:10.719147984 +0000 2024-01-27T23:25:39.823 INFO:teuthology.orchestra.run.smithi186.stdout:Change: 2024-01-27 23:23:10.719147984 +0000 2024-01-27T23:25:39.823 INFO:teuthology.orchestra.run.smithi186.stdout: Birth: - 2024-01-27T23:25:39.823 DEBUG:teuthology.orchestra.run.smithi186:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-01-27T23:25:39.888 INFO:teuthology.orchestra.run.smithi186.stderr:1+0 records in 2024-01-27T23:25:39.888 INFO:teuthology.orchestra.run.smithi186.stderr:1+0 records out 2024-01-27T23:25:39.888 INFO:teuthology.orchestra.run.smithi186.stderr:512 bytes copied, 0.000206443 s, 2.5 MB/s 2024-01-27T23:25:39.889 DEBUG:teuthology.orchestra.run.smithi186:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-01-27T23:25:39.947 DEBUG:teuthology.orchestra.run.smithi186:> stat /dev/nvme4n1 2024-01-27T23:25:40.004 INFO:teuthology.orchestra.run.smithi186.stdout: File: /dev/nvme4n1 2024-01-27T23:25:40.004 INFO:teuthology.orchestra.run.smithi186.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-01-27T23:25:40.004 INFO:teuthology.orchestra.run.smithi186.stdout:Device: 6h/6d Inode: 202241 Links: 1 Device type: 103,4 2024-01-27T23:25:40.004 INFO:teuthology.orchestra.run.smithi186.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-01-27T23:25:40.004 INFO:teuthology.orchestra.run.smithi186.stdout:Context: system_u:object_r:nvme_device_t:s0 2024-01-27T23:25:40.004 INFO:teuthology.orchestra.run.smithi186.stdout:Access: 2024-01-27 23:25:20.373868348 +0000 2024-01-27T23:25:40.004 INFO:teuthology.orchestra.run.smithi186.stdout:Modify: 2024-01-27 23:23:10.867145370 +0000 2024-01-27T23:25:40.005 INFO:teuthology.orchestra.run.smithi186.stdout:Change: 2024-01-27 23:23:10.867145370 +0000 2024-01-27T23:25:40.005 INFO:teuthology.orchestra.run.smithi186.stdout: Birth: - 2024-01-27T23:25:40.005 DEBUG:teuthology.orchestra.run.smithi186:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-01-27T23:25:40.070 INFO:teuthology.orchestra.run.smithi186.stderr:1+0 records in 2024-01-27T23:25:40.070 INFO:teuthology.orchestra.run.smithi186.stderr:1+0 records out 2024-01-27T23:25:40.070 INFO:teuthology.orchestra.run.smithi186.stderr:512 bytes copied, 0.000267146 s, 1.9 MB/s 2024-01-27T23:25:40.071 DEBUG:teuthology.orchestra.run.smithi186:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-01-27T23:25:40.129 DEBUG:teuthology.orchestra.run.smithi186:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch apply osd --all-available-devices 2024-01-27T23:25:40.503 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:40 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:25:38.977429+0000 mgr.smithi073.msdoog (mgr.14182) 21 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:25:40.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:40 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:25:38.977429+0000 mgr.smithi073.msdoog (mgr.14182) 21 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:25:42.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:42 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:25:40.977827+0000 mgr.smithi073.msdoog (mgr.14182) 22 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:25:42.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:42 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:25:40.977827+0000 mgr.smithi073.msdoog (mgr.14182) 22 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:25:44.752 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:44 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:25:42.978185+0000 mgr.smithi073.msdoog (mgr.14182) 23 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:25:44.802 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:25:42.978185+0000 mgr.smithi073.msdoog (mgr.14182) 23 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:25:45.284 INFO:teuthology.orchestra.run.smithi186.stdout:Scheduled osd.all-available-devices update... 2024-01-27T23:25:45.849 INFO:tasks.cephadm:Waiting for 8 OSDs to come up... 2024-01-27T23:25:45.850 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph osd stat -f json 2024-01-27T23:25:46.165 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:45 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:44.977123+0000 mon.smithi073 (mon.0) 203 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:25:46.165 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:45 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:25:44.978405+0000 mgr.smithi073.msdoog (mgr.14182) 24 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:25:46.165 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:45 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:44.978805+0000 mon.smithi073 (mon.0) 204 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:25:46.165 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:45 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:45.289673+0000 mgr.smithi073.msdoog (mgr.14182) 25 : audit [DBG] from='client.24101 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:25:46.165 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:45 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:25:45.291345+0000 mgr.smithi073.msdoog (mgr.14182) 26 : cephadm [INF] Marking host: smithi073 for OSDSpec preview refresh. 2024-01-27T23:25:46.165 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:45 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:25:45.291422+0000 mgr.smithi073.msdoog (mgr.14182) 27 : cephadm [INF] Marking host: smithi186 for OSDSpec preview refresh. 2024-01-27T23:25:46.165 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:45 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:25:45.291703+0000 mgr.smithi073.msdoog (mgr.14182) 28 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2024-01-27T23:25:46.165 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:45 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:45.295486+0000 mon.smithi073 (mon.0) 205 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:25:46.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:45 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:44.977123+0000 mon.smithi073 (mon.0) 203 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:25:46.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:45 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:25:44.978405+0000 mgr.smithi073.msdoog (mgr.14182) 24 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:25:46.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:45 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:44.978805+0000 mon.smithi073 (mon.0) 204 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:25:46.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:45 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:45.289673+0000 mgr.smithi073.msdoog (mgr.14182) 25 : audit [DBG] from='client.24101 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:25:46.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:45 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:25:45.291345+0000 mgr.smithi073.msdoog (mgr.14182) 26 : cephadm [INF] Marking host: smithi073 for OSDSpec preview refresh. 2024-01-27T23:25:46.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:45 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:25:45.291422+0000 mgr.smithi073.msdoog (mgr.14182) 27 : cephadm [INF] Marking host: smithi186 for OSDSpec preview refresh. 2024-01-27T23:25:46.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:45 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:25:45.291703+0000 mgr.smithi073.msdoog (mgr.14182) 28 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2024-01-27T23:25:46.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:45 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:45.295486+0000 mon.smithi073 (mon.0) 205 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:25:47.409 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:47 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:46.325697+0000 mon.smithi073 (mon.0) 206 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:25:47.409 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:47 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:46.332325+0000 mon.smithi073 (mon.0) 207 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:25:47.409 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:47 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:46.333043+0000 mon.smithi073 (mon.0) 208 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:25:47.409 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:47 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:46.333583+0000 mon.smithi073 (mon.0) 209 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:25:47.409 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:47 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:25:46.334347+0000 mgr.smithi073.msdoog (mgr.14182) 29 : cephadm [INF] Updating smithi073:/etc/ceph/ceph.conf 2024-01-27T23:25:47.409 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:47 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:25:46.334551+0000 mgr.smithi073.msdoog (mgr.14182) 30 : cephadm [INF] Updating smithi186:/etc/ceph/ceph.conf 2024-01-27T23:25:47.409 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:47 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:46.386977+0000 mon.smithi073 (mon.0) 210 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:25:47.409 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:47 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:46.407057+0000 mon.smithi073 (mon.0) 211 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:25:47.409 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:47 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:46.410014+0000 mon.smithi073 (mon.0) 212 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:25:47.410 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:47 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:46.413369+0000 mon.smithi073 (mon.0) 213 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:25:47.410 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:47 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:46.416073+0000 mon.smithi073 (mon.0) 214 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-27T23:25:47.410 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:47 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:46.417109+0000 mon.smithi073 (mon.0) 215 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-27T23:25:47.410 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:47 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:46.417296+0000 mon.smithi073 (mon.0) 216 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:25:47.410 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:47 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:46.417698+0000 mon.smithi073 (mon.0) 217 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:25:47.541 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:47 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:46.325697+0000 mon.smithi073 (mon.0) 206 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:25:47.541 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:47 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:46.332325+0000 mon.smithi073 (mon.0) 207 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:25:47.541 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:47 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:46.333043+0000 mon.smithi073 (mon.0) 208 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:25:47.541 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:47 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:46.333583+0000 mon.smithi073 (mon.0) 209 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:25:47.541 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:47 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:25:46.334347+0000 mgr.smithi073.msdoog (mgr.14182) 29 : cephadm [INF] Updating smithi073:/etc/ceph/ceph.conf 2024-01-27T23:25:47.541 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:47 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:25:46.334551+0000 mgr.smithi073.msdoog (mgr.14182) 30 : cephadm [INF] Updating smithi186:/etc/ceph/ceph.conf 2024-01-27T23:25:47.541 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:47 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:46.386977+0000 mon.smithi073 (mon.0) 210 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:25:47.541 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:47 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:46.407057+0000 mon.smithi073 (mon.0) 211 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:25:47.541 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:47 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:46.410014+0000 mon.smithi073 (mon.0) 212 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:25:47.541 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:47 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:46.413369+0000 mon.smithi073 (mon.0) 213 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:25:47.541 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:47 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:46.416073+0000 mon.smithi073 (mon.0) 214 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-27T23:25:47.541 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:47 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:46.417109+0000 mon.smithi073 (mon.0) 215 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-27T23:25:47.541 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:47 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:46.417296+0000 mon.smithi073 (mon.0) 216 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:25:47.541 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:47 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:46.417698+0000 mon.smithi073 (mon.0) 217 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:25:47.658 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:25:48.677 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:48 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:25:46.978633+0000 mgr.smithi073.msdoog (mgr.14182) 31 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:25:48.677 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:48 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:47.669763+0000 mon.smithi073 (mon.0) 218 : audit [DBG] from='client.? 172.21.15.73:0/1652020686' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:25:48.694 INFO:teuthology.orchestra.run.smithi073.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} 2024-01-27T23:25:48.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:48 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:25:46.978633+0000 mgr.smithi073.msdoog (mgr.14182) 31 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:25:48.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:48 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:47.669763+0000 mon.smithi073 (mon.0) 218 : audit [DBG] from='client.? 172.21.15.73:0/1652020686' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:25:49.695 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph osd stat -f json 2024-01-27T23:25:49.730 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:49 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:48.481277+0000 mon.smithi186 (mon.1) 2 : audit [INF] from='client.? 172.21.15.186:0/3214072386' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "305a98f5-98c8-4f68-a35e-e6f94f2360f0"}]: dispatch 2024-01-27T23:25:49.730 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:49 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:48.481770+0000 mon.smithi073 (mon.0) 219 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "305a98f5-98c8-4f68-a35e-e6f94f2360f0"}]: dispatch 2024-01-27T23:25:49.731 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:49 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:48.489394+0000 mon.smithi073 (mon.0) 220 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "305a98f5-98c8-4f68-a35e-e6f94f2360f0"}]': finished 2024-01-27T23:25:49.731 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:49 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:25:48.489445+0000 mon.smithi073 (mon.0) 221 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-01-27T23:25:49.731 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:49 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:48.489552+0000 mon.smithi073 (mon.0) 222 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-27T23:25:49.731 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:49 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:48.606997+0000 mon.smithi073 (mon.0) 223 : audit [INF] from='client.? 172.21.15.73:0/1475560599' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "5f919e00-6d9b-4612-82c2-842f1624c5ba"}]: dispatch 2024-01-27T23:25:49.731 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:49 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:48.614882+0000 mon.smithi073 (mon.0) 224 : audit [INF] from='client.? 172.21.15.73:0/1475560599' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "5f919e00-6d9b-4612-82c2-842f1624c5ba"}]': finished 2024-01-27T23:25:49.731 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:49 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:25:48.614929+0000 mon.smithi073 (mon.0) 225 : cluster [DBG] osdmap e7: 2 total, 0 up, 2 in 2024-01-27T23:25:49.731 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:49 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:48.615028+0000 mon.smithi073 (mon.0) 226 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-27T23:25:49.731 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:49 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:48.615300+0000 mon.smithi073 (mon.0) 227 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:25:49.752 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:49 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:48.481277+0000 mon.smithi186 (mon.1) 2 : audit [INF] from='client.? 172.21.15.186:0/3214072386' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "305a98f5-98c8-4f68-a35e-e6f94f2360f0"}]: dispatch 2024-01-27T23:25:49.752 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:49 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:48.481770+0000 mon.smithi073 (mon.0) 219 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "305a98f5-98c8-4f68-a35e-e6f94f2360f0"}]: dispatch 2024-01-27T23:25:49.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:49 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:48.489394+0000 mon.smithi073 (mon.0) 220 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "305a98f5-98c8-4f68-a35e-e6f94f2360f0"}]': finished 2024-01-27T23:25:49.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:49 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:25:48.489445+0000 mon.smithi073 (mon.0) 221 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-01-27T23:25:49.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:49 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:48.489552+0000 mon.smithi073 (mon.0) 222 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-27T23:25:49.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:49 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:48.606997+0000 mon.smithi073 (mon.0) 223 : audit [INF] from='client.? 172.21.15.73:0/1475560599' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "5f919e00-6d9b-4612-82c2-842f1624c5ba"}]: dispatch 2024-01-27T23:25:49.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:49 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:48.614882+0000 mon.smithi073 (mon.0) 224 : audit [INF] from='client.? 172.21.15.73:0/1475560599' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "5f919e00-6d9b-4612-82c2-842f1624c5ba"}]': finished 2024-01-27T23:25:49.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:49 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:25:48.614929+0000 mon.smithi073 (mon.0) 225 : cluster [DBG] osdmap e7: 2 total, 0 up, 2 in 2024-01-27T23:25:49.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:49 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:48.615028+0000 mon.smithi073 (mon.0) 226 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-27T23:25:49.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:49 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:48.615300+0000 mon.smithi073 (mon.0) 227 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:25:50.725 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:25:48.978939+0000 mgr.smithi073.msdoog (mgr.14182) 32 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:25:50.725 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:49.779341+0000 mon.smithi186 (mon.1) 3 : audit [DBG] from='client.? 172.21.15.186:0/437388846' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-01-27T23:25:50.725 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:49.927279+0000 mon.smithi073 (mon.0) 228 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:25:50.725 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:50.574041+0000 mon.smithi073 (mon.0) 229 : audit [DBG] from='client.? 172.21.15.73:0/3352763371' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-01-27T23:25:51.002 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:25:48.978939+0000 mgr.smithi073.msdoog (mgr.14182) 32 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:25:51.002 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:49.779341+0000 mon.smithi186 (mon.1) 3 : audit [DBG] from='client.? 172.21.15.186:0/437388846' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-01-27T23:25:51.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:49.927279+0000 mon.smithi073 (mon.0) 228 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:25:51.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:50.574041+0000 mon.smithi073 (mon.0) 229 : audit [DBG] from='client.? 172.21.15.73:0/3352763371' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-01-27T23:25:51.066 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:25:51.449 INFO:teuthology.orchestra.run.smithi073.stdout:{"epoch":7,"num_osds":2,"num_up_osds":0,"osd_up_since":0,"num_in_osds":2,"osd_in_since":1706397948,"num_remapped_pgs":0} 2024-01-27T23:25:51.802 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:51 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:51.077851+0000 mon.smithi073 (mon.0) 230 : audit [DBG] from='client.? 172.21.15.73:0/1201983246' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:25:52.002 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:51 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:51.077851+0000 mon.smithi073 (mon.0) 230 : audit [DBG] from='client.? 172.21.15.73:0/1201983246' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:25:52.450 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph osd stat -f json 2024-01-27T23:25:52.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:52 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:25:50.979189+0000 mgr.smithi073.msdoog (mgr.14182) 33 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:25:52.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:52 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:52.289873+0000 mon.smithi186 (mon.1) 4 : audit [INF] from='client.? 172.21.15.186:0/297608995' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "95e31694-c50f-4c83-80b7-e75259f5f82b"}]: dispatch 2024-01-27T23:25:52.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:52 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:52.290401+0000 mon.smithi073 (mon.0) 231 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "95e31694-c50f-4c83-80b7-e75259f5f82b"}]: dispatch 2024-01-27T23:25:52.754 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:52 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:52.293783+0000 mon.smithi073 (mon.0) 232 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "95e31694-c50f-4c83-80b7-e75259f5f82b"}]': finished 2024-01-27T23:25:52.754 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:52 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:25:52.293854+0000 mon.smithi073 (mon.0) 233 : cluster [DBG] osdmap e8: 3 total, 0 up, 3 in 2024-01-27T23:25:52.754 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:52 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:52.293981+0000 mon.smithi073 (mon.0) 234 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-27T23:25:52.754 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:52 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:52.294230+0000 mon.smithi073 (mon.0) 235 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:25:52.754 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:52 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:52.294387+0000 mon.smithi073 (mon.0) 236 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:25:52.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:52 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:25:50.979189+0000 mgr.smithi073.msdoog (mgr.14182) 33 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:25:52.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:52 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:52.289873+0000 mon.smithi186 (mon.1) 4 : audit [INF] from='client.? 172.21.15.186:0/297608995' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "95e31694-c50f-4c83-80b7-e75259f5f82b"}]: dispatch 2024-01-27T23:25:52.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:52 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:52.290401+0000 mon.smithi073 (mon.0) 231 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "95e31694-c50f-4c83-80b7-e75259f5f82b"}]: dispatch 2024-01-27T23:25:52.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:52 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:52.293783+0000 mon.smithi073 (mon.0) 232 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "95e31694-c50f-4c83-80b7-e75259f5f82b"}]': finished 2024-01-27T23:25:52.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:52 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:25:52.293854+0000 mon.smithi073 (mon.0) 233 : cluster [DBG] osdmap e8: 3 total, 0 up, 3 in 2024-01-27T23:25:52.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:52 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:52.293981+0000 mon.smithi073 (mon.0) 234 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-27T23:25:52.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:52 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:52.294230+0000 mon.smithi073 (mon.0) 235 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:25:52.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:52 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:52.294387+0000 mon.smithi073 (mon.0) 236 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:25:53.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:53 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:53.121693+0000 mon.smithi073 (mon.0) 237 : audit [INF] from='client.? 172.21.15.73:0/1367105410' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "86c40c0b-6895-4d07-ac50-cb2572996557"}]: dispatch 2024-01-27T23:25:53.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:53 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:53.127127+0000 mon.smithi073 (mon.0) 238 : audit [INF] from='client.? 172.21.15.73:0/1367105410' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "86c40c0b-6895-4d07-ac50-cb2572996557"}]': finished 2024-01-27T23:25:53.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:53 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:25:53.127171+0000 mon.smithi073 (mon.0) 239 : cluster [DBG] osdmap e9: 4 total, 0 up, 4 in 2024-01-27T23:25:53.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:53 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:53.127273+0000 mon.smithi073 (mon.0) 240 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-27T23:25:53.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:53 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:53.127503+0000 mon.smithi073 (mon.0) 241 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:25:53.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:53 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:53.127648+0000 mon.smithi073 (mon.0) 242 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:25:53.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:53 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:53.127802+0000 mon.smithi073 (mon.0) 243 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:25:53.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:53 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:53.564735+0000 mon.smithi186 (mon.1) 5 : audit [DBG] from='client.? 172.21.15.186:0/1696562275' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-01-27T23:25:53.888 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:25:54.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:53 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:53.121693+0000 mon.smithi073 (mon.0) 237 : audit [INF] from='client.? 172.21.15.73:0/1367105410' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "86c40c0b-6895-4d07-ac50-cb2572996557"}]: dispatch 2024-01-27T23:25:54.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:53 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:53.127127+0000 mon.smithi073 (mon.0) 238 : audit [INF] from='client.? 172.21.15.73:0/1367105410' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "86c40c0b-6895-4d07-ac50-cb2572996557"}]': finished 2024-01-27T23:25:54.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:53 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:25:53.127171+0000 mon.smithi073 (mon.0) 239 : cluster [DBG] osdmap e9: 4 total, 0 up, 4 in 2024-01-27T23:25:54.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:53 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:53.127273+0000 mon.smithi073 (mon.0) 240 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-27T23:25:54.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:53 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:53.127503+0000 mon.smithi073 (mon.0) 241 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:25:54.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:53 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:53.127648+0000 mon.smithi073 (mon.0) 242 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:25:54.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:53 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:53.127802+0000 mon.smithi073 (mon.0) 243 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:25:54.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:53 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:53.564735+0000 mon.smithi186 (mon.1) 5 : audit [DBG] from='client.? 172.21.15.186:0/1696562275' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-01-27T23:25:54.352 INFO:teuthology.orchestra.run.smithi073.stdout:{"epoch":9,"num_osds":4,"num_up_osds":0,"osd_up_since":0,"num_in_osds":4,"osd_in_since":1706397953,"num_remapped_pgs":0} 2024-01-27T23:25:55.002 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:54 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:25:52.979539+0000 mgr.smithi073.msdoog (mgr.14182) 34 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:25:55.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:54 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:53.900086+0000 mon.smithi073 (mon.0) 244 : audit [DBG] from='client.? 172.21.15.73:0/3431953857' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:25:55.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:54 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:54.507170+0000 mon.smithi073 (mon.0) 245 : audit [DBG] from='client.? 172.21.15.73:0/2155741499' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-01-27T23:25:55.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:54 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:25:52.979539+0000 mgr.smithi073.msdoog (mgr.14182) 34 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:25:55.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:54 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:53.900086+0000 mon.smithi073 (mon.0) 244 : audit [DBG] from='client.? 172.21.15.73:0/3431953857' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:25:55.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:54 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:54.507170+0000 mon.smithi073 (mon.0) 245 : audit [DBG] from='client.? 172.21.15.73:0/2155741499' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-01-27T23:25:55.353 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph osd stat -f json 2024-01-27T23:25:56.777 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:25:56.801 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:56 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:25:54.979821+0000 mgr.smithi073.msdoog (mgr.14182) 35 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:25:56.801 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:56 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:56.069964+0000 mon.smithi186 (mon.1) 6 : audit [INF] from='client.? 172.21.15.186:0/666945552' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b9413f80-7758-4678-b787-8b44ea2ed9fa"}]: dispatch 2024-01-27T23:25:56.801 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:56 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:56.070460+0000 mon.smithi073 (mon.0) 246 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b9413f80-7758-4678-b787-8b44ea2ed9fa"}]: dispatch 2024-01-27T23:25:56.801 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:56 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:56.073879+0000 mon.smithi073 (mon.0) 247 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b9413f80-7758-4678-b787-8b44ea2ed9fa"}]': finished 2024-01-27T23:25:56.801 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:56 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:25:56.073921+0000 mon.smithi073 (mon.0) 248 : cluster [DBG] osdmap e10: 5 total, 0 up, 5 in 2024-01-27T23:25:56.801 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:56 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:56.074011+0000 mon.smithi073 (mon.0) 249 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-27T23:25:56.801 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:56 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:56.074356+0000 mon.smithi073 (mon.0) 250 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:25:56.801 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:56 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:56.074558+0000 mon.smithi073 (mon.0) 251 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:25:56.801 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:56 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:56.074751+0000 mon.smithi073 (mon.0) 252 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:25:56.801 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:56 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:56.074950+0000 mon.smithi073 (mon.0) 253 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:25:57.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:56 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:25:54.979821+0000 mgr.smithi073.msdoog (mgr.14182) 35 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:25:57.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:56 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:56.069964+0000 mon.smithi186 (mon.1) 6 : audit [INF] from='client.? 172.21.15.186:0/666945552' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b9413f80-7758-4678-b787-8b44ea2ed9fa"}]: dispatch 2024-01-27T23:25:57.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:56 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:56.070460+0000 mon.smithi073 (mon.0) 246 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b9413f80-7758-4678-b787-8b44ea2ed9fa"}]: dispatch 2024-01-27T23:25:57.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:56 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:56.073879+0000 mon.smithi073 (mon.0) 247 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b9413f80-7758-4678-b787-8b44ea2ed9fa"}]': finished 2024-01-27T23:25:57.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:56 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:25:56.073921+0000 mon.smithi073 (mon.0) 248 : cluster [DBG] osdmap e10: 5 total, 0 up, 5 in 2024-01-27T23:25:57.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:56 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:56.074011+0000 mon.smithi073 (mon.0) 249 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-27T23:25:57.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:56 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:56.074356+0000 mon.smithi073 (mon.0) 250 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:25:57.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:56 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:56.074558+0000 mon.smithi073 (mon.0) 251 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:25:57.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:56 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:56.074751+0000 mon.smithi073 (mon.0) 252 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:25:57.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:56 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:56.074950+0000 mon.smithi073 (mon.0) 253 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:25:57.097 INFO:teuthology.orchestra.run.smithi073.stdout:{"epoch":10,"num_osds":5,"num_up_osds":0,"osd_up_since":0,"num_in_osds":5,"osd_in_since":1706397956,"num_remapped_pgs":0} 2024-01-27T23:25:58.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:57 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:56.787741+0000 mon.smithi073 (mon.0) 254 : audit [DBG] from='client.? 172.21.15.73:0/2749759702' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:25:58.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:57 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:57.049544+0000 mon.smithi073 (mon.0) 255 : audit [INF] from='client.? 172.21.15.73:0/1374843568' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "6bb0029a-3fce-4c2a-ab5d-ee0268a5b28f"}]: dispatch 2024-01-27T23:25:58.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:57 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:57.052930+0000 mon.smithi073 (mon.0) 256 : audit [INF] from='client.? 172.21.15.73:0/1374843568' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "6bb0029a-3fce-4c2a-ab5d-ee0268a5b28f"}]': finished 2024-01-27T23:25:58.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:57 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:25:57.052976+0000 mon.smithi073 (mon.0) 257 : cluster [DBG] osdmap e11: 6 total, 0 up, 6 in 2024-01-27T23:25:58.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:57 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:57.053073+0000 mon.smithi073 (mon.0) 258 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-27T23:25:58.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:57 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:57.053295+0000 mon.smithi073 (mon.0) 259 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:25:58.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:57 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:57.053422+0000 mon.smithi073 (mon.0) 260 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:25:58.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:57 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:57.053574+0000 mon.smithi073 (mon.0) 261 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:25:58.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:57 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:57.053710+0000 mon.smithi073 (mon.0) 262 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:25:58.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:57 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:57.053882+0000 mon.smithi073 (mon.0) 263 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:25:58.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:57 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:57.316493+0000 mon.smithi186 (mon.1) 7 : audit [DBG] from='client.? 172.21.15.186:0/3443827343' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-01-27T23:25:58.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:57 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:56.787741+0000 mon.smithi073 (mon.0) 254 : audit [DBG] from='client.? 172.21.15.73:0/2749759702' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:25:58.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:57 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:57.049544+0000 mon.smithi073 (mon.0) 255 : audit [INF] from='client.? 172.21.15.73:0/1374843568' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "6bb0029a-3fce-4c2a-ab5d-ee0268a5b28f"}]: dispatch 2024-01-27T23:25:58.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:57 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:57.052930+0000 mon.smithi073 (mon.0) 256 : audit [INF] from='client.? 172.21.15.73:0/1374843568' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "6bb0029a-3fce-4c2a-ab5d-ee0268a5b28f"}]': finished 2024-01-27T23:25:58.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:57 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:25:57.052976+0000 mon.smithi073 (mon.0) 257 : cluster [DBG] osdmap e11: 6 total, 0 up, 6 in 2024-01-27T23:25:58.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:57 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:57.053073+0000 mon.smithi073 (mon.0) 258 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-27T23:25:58.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:57 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:57.053295+0000 mon.smithi073 (mon.0) 259 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:25:58.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:57 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:57.053422+0000 mon.smithi073 (mon.0) 260 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:25:58.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:57 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:57.053574+0000 mon.smithi073 (mon.0) 261 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:25:58.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:57 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:57.053710+0000 mon.smithi073 (mon.0) 262 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:25:58.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:57 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:57.053882+0000 mon.smithi073 (mon.0) 263 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:25:58.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:57 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:57.316493+0000 mon.smithi186 (mon.1) 7 : audit [DBG] from='client.? 172.21.15.186:0/3443827343' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-01-27T23:25:58.098 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph osd stat -f json 2024-01-27T23:25:58.764 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:58 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:25:56.980023+0000 mgr.smithi073.msdoog (mgr.14182) 36 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:25:58.764 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:25:58 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:58.313963+0000 mon.smithi073 (mon.0) 264 : audit [DBG] from='client.? 172.21.15.73:0/2460146335' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-01-27T23:25:59.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:58 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:25:56.980023+0000 mgr.smithi073.msdoog (mgr.14182) 36 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:25:59.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:25:58 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:58.313963+0000 mon.smithi073 (mon.0) 264 : audit [DBG] from='client.? 172.21.15.73:0/2460146335' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-01-27T23:25:59.460 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:26:00.034 INFO:teuthology.orchestra.run.smithi073.stdout:{"epoch":11,"num_osds":6,"num_up_osds":0,"osd_up_since":0,"num_in_osds":6,"osd_in_since":1706397957,"num_remapped_pgs":0} 2024-01-27T23:26:00.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:00 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:25:58.980251+0000 mgr.smithi073.msdoog (mgr.14182) 37 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:26:00.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:00 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:59.472200+0000 mon.smithi073 (mon.0) 265 : audit [DBG] from='client.? 172.21.15.73:0/4173974351' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:26:00.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:00 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:59.825615+0000 mon.smithi186 (mon.1) 8 : audit [INF] from='client.? 172.21.15.186:0/3489577961' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "05a20ff1-bfc7-4e5e-b111-94917569f6dc"}]: dispatch 2024-01-27T23:26:00.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:00 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:59.826001+0000 mon.smithi073 (mon.0) 266 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "05a20ff1-bfc7-4e5e-b111-94917569f6dc"}]: dispatch 2024-01-27T23:26:00.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:00 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:59.830160+0000 mon.smithi073 (mon.0) 267 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "05a20ff1-bfc7-4e5e-b111-94917569f6dc"}]': finished 2024-01-27T23:26:00.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:00 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:25:59.830202+0000 mon.smithi073 (mon.0) 268 : cluster [DBG] osdmap e12: 7 total, 0 up, 7 in 2024-01-27T23:26:00.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:00 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:59.830279+0000 mon.smithi073 (mon.0) 269 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-27T23:26:00.754 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:00 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:59.830478+0000 mon.smithi073 (mon.0) 270 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:26:00.754 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:00 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:59.830602+0000 mon.smithi073 (mon.0) 271 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:26:00.754 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:00 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:59.830720+0000 mon.smithi073 (mon.0) 272 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:26:00.754 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:00 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:59.830847+0000 mon.smithi073 (mon.0) 273 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:26:00.754 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:00 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:59.830967+0000 mon.smithi073 (mon.0) 274 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:26:00.754 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:00 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:25:59.831086+0000 mon.smithi073 (mon.0) 275 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:26:00.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:00 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:25:58.980251+0000 mgr.smithi073.msdoog (mgr.14182) 37 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:26:00.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:00 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:59.472200+0000 mon.smithi073 (mon.0) 265 : audit [DBG] from='client.? 172.21.15.73:0/4173974351' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:26:00.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:00 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:59.825615+0000 mon.smithi186 (mon.1) 8 : audit [INF] from='client.? 172.21.15.186:0/3489577961' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "05a20ff1-bfc7-4e5e-b111-94917569f6dc"}]: dispatch 2024-01-27T23:26:00.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:00 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:59.826001+0000 mon.smithi073 (mon.0) 266 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "05a20ff1-bfc7-4e5e-b111-94917569f6dc"}]: dispatch 2024-01-27T23:26:00.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:00 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:59.830160+0000 mon.smithi073 (mon.0) 267 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "05a20ff1-bfc7-4e5e-b111-94917569f6dc"}]': finished 2024-01-27T23:26:00.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:00 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:25:59.830202+0000 mon.smithi073 (mon.0) 268 : cluster [DBG] osdmap e12: 7 total, 0 up, 7 in 2024-01-27T23:26:00.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:00 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:59.830279+0000 mon.smithi073 (mon.0) 269 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-27T23:26:00.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:00 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:59.830478+0000 mon.smithi073 (mon.0) 270 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:26:00.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:00 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:59.830602+0000 mon.smithi073 (mon.0) 271 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:26:00.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:00 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:59.830720+0000 mon.smithi073 (mon.0) 272 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:26:00.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:00 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:59.830847+0000 mon.smithi073 (mon.0) 273 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:26:00.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:00 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:59.830967+0000 mon.smithi073 (mon.0) 274 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:26:00.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:00 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:25:59.831086+0000 mon.smithi073 (mon.0) 275 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:26:01.035 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph osd stat -f json 2024-01-27T23:26:01.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:01 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:00.838596+0000 mon.smithi073 (mon.0) 276 : audit [INF] from='client.? 172.21.15.73:0/405767369' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "0739e7dd-e0d9-4aaa-9377-9cb3ddd962ae"}]: dispatch 2024-01-27T23:26:01.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:01 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:00.842144+0000 mon.smithi073 (mon.0) 277 : audit [INF] from='client.? 172.21.15.73:0/405767369' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "0739e7dd-e0d9-4aaa-9377-9cb3ddd962ae"}]': finished 2024-01-27T23:26:01.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:01 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:00.842179+0000 mon.smithi073 (mon.0) 278 : cluster [DBG] osdmap e13: 8 total, 0 up, 8 in 2024-01-27T23:26:01.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:01 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:00.842268+0000 mon.smithi073 (mon.0) 279 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-27T23:26:01.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:01 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:00.842599+0000 mon.smithi073 (mon.0) 280 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:26:01.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:01 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:00.842821+0000 mon.smithi073 (mon.0) 281 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:26:01.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:01 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:00.843021+0000 mon.smithi073 (mon.0) 282 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:26:01.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:01 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:00.843226+0000 mon.smithi073 (mon.0) 283 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:26:01.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:01 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:00.843427+0000 mon.smithi073 (mon.0) 284 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:26:01.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:01 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:00.843621+0000 mon.smithi073 (mon.0) 285 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:26:01.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:01 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:00.843833+0000 mon.smithi073 (mon.0) 286 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:26:01.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:01 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:01.250333+0000 mon.smithi186 (mon.1) 9 : audit [DBG] from='client.? 172.21.15.186:0/1300716387' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-01-27T23:26:01.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:01 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:00.838596+0000 mon.smithi073 (mon.0) 276 : audit [INF] from='client.? 172.21.15.73:0/405767369' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "0739e7dd-e0d9-4aaa-9377-9cb3ddd962ae"}]: dispatch 2024-01-27T23:26:01.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:01 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:00.842144+0000 mon.smithi073 (mon.0) 277 : audit [INF] from='client.? 172.21.15.73:0/405767369' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "0739e7dd-e0d9-4aaa-9377-9cb3ddd962ae"}]': finished 2024-01-27T23:26:01.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:01 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:00.842179+0000 mon.smithi073 (mon.0) 278 : cluster [DBG] osdmap e13: 8 total, 0 up, 8 in 2024-01-27T23:26:01.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:01 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:00.842268+0000 mon.smithi073 (mon.0) 279 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-27T23:26:01.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:01 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:00.842599+0000 mon.smithi073 (mon.0) 280 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:26:01.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:01 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:00.842821+0000 mon.smithi073 (mon.0) 281 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:26:01.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:01 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:00.843021+0000 mon.smithi073 (mon.0) 282 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:26:01.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:01 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:00.843226+0000 mon.smithi073 (mon.0) 283 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:26:01.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:01 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:00.843427+0000 mon.smithi073 (mon.0) 284 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:26:01.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:01 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:00.843621+0000 mon.smithi073 (mon.0) 285 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:26:01.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:01 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:00.843833+0000 mon.smithi073 (mon.0) 286 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:26:01.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:01 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:01.250333+0000 mon.smithi186 (mon.1) 9 : audit [DBG] from='client.? 172.21.15.186:0/1300716387' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-01-27T23:26:02.547 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:26:02.552 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:02 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:00.980607+0000 mgr.smithi073.msdoog (mgr.14182) 38 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:26:02.552 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:02 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:02.245810+0000 mon.smithi073 (mon.0) 287 : audit [DBG] from='client.? 172.21.15.73:0/3671662323' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-01-27T23:26:02.752 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:02 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:00.980607+0000 mgr.smithi073.msdoog (mgr.14182) 38 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:26:02.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:02 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:02.245810+0000 mon.smithi073 (mon.0) 287 : audit [DBG] from='client.? 172.21.15.73:0/3671662323' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-01-27T23:26:02.959 INFO:teuthology.orchestra.run.smithi073.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1706397960,"num_remapped_pgs":0} 2024-01-27T23:26:03.673 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:03 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:02.559130+0000 mon.smithi073 (mon.0) 288 : audit [DBG] from='client.? 172.21.15.73:0/3409370561' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:26:03.802 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:03 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:02.559130+0000 mon.smithi073 (mon.0) 288 : audit [DBG] from='client.? 172.21.15.73:0/3409370561' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:26:03.960 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph osd stat -f json 2024-01-27T23:26:04.503 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:04 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:02.981034+0000 mgr.smithi073.msdoog (mgr.14182) 39 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:26:04.713 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:04 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:02.981034+0000 mgr.smithi073.msdoog (mgr.14182) 39 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:26:05.496 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:26:06.126 INFO:teuthology.orchestra.run.smithi073.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1706397960,"num_remapped_pgs":0} 2024-01-27T23:26:06.657 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:06 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:04.981303+0000 mgr.smithi073.msdoog (mgr.14182) 40 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:26:06.657 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:06 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:05.508052+0000 mon.smithi073 (mon.0) 289 : audit [DBG] from='client.? 172.21.15.73:0/2271216142' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:26:06.657 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:06 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:05.614956+0000 mon.smithi073 (mon.0) 290 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-01-27T23:26:06.657 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:06 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:05.615545+0000 mon.smithi073 (mon.0) 291 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:26:06.657 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:06 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:26:05.616060+0000 mgr.smithi073.msdoog (mgr.14182) 41 : cephadm [INF] Deploying daemon osd.0 on smithi186 2024-01-27T23:26:06.683 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:06 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:04.981303+0000 mgr.smithi073.msdoog (mgr.14182) 40 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:26:06.684 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:06 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:05.508052+0000 mon.smithi073 (mon.0) 289 : audit [DBG] from='client.? 172.21.15.73:0/2271216142' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:26:06.684 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:06 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:05.614956+0000 mon.smithi073 (mon.0) 290 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-01-27T23:26:06.684 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:06 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:05.615545+0000 mon.smithi073 (mon.0) 291 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:26:06.684 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:06 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:26:05.616060+0000 mgr.smithi073.msdoog (mgr.14182) 41 : cephadm [INF] Deploying daemon osd.0 on smithi186 2024-01-27T23:26:07.127 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph osd stat -f json 2024-01-27T23:26:07.603 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:07 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:07.062286+0000 mon.smithi073 (mon.0) 292 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-01-27T23:26:07.604 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:07 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:07.062859+0000 mon.smithi073 (mon.0) 293 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:26:07.785 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:07 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:07.062286+0000 mon.smithi073 (mon.0) 292 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-01-27T23:26:07.785 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:07 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:07.062859+0000 mon.smithi073 (mon.0) 293 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:26:08.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:08 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:06.981626+0000 mgr.smithi073.msdoog (mgr.14182) 42 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:26:08.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:08 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:26:07.063352+0000 mgr.smithi073.msdoog (mgr.14182) 43 : cephadm [INF] Deploying daemon osd.1 on smithi073 2024-01-27T23:26:08.802 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:08 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:06.981626+0000 mgr.smithi073.msdoog (mgr.14182) 42 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:26:08.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:08 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:26:07.063352+0000 mgr.smithi073.msdoog (mgr.14182) 43 : cephadm [INF] Deploying daemon osd.1 on smithi073 2024-01-27T23:26:08.886 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:26:09.344 INFO:teuthology.orchestra.run.smithi073.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1706397960,"num_remapped_pgs":0} 2024-01-27T23:26:09.552 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:09 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:08.897811+0000 mon.smithi073 (mon.0) 294 : audit [DBG] from='client.? 172.21.15.73:0/2381164953' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:26:09.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:09 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:09.101513+0000 mon.smithi073 (mon.0) 295 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:09.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:09 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:09.102090+0000 mon.smithi073 (mon.0) 296 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-01-27T23:26:09.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:09 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:09.102580+0000 mon.smithi073 (mon.0) 297 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:26:09.656 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:09 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:08.897811+0000 mon.smithi073 (mon.0) 294 : audit [DBG] from='client.? 172.21.15.73:0/2381164953' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:26:09.656 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:09 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:09.101513+0000 mon.smithi073 (mon.0) 295 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:09.656 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:09 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:09.102090+0000 mon.smithi073 (mon.0) 296 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-01-27T23:26:09.656 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:09 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:09.102580+0000 mon.smithi073 (mon.0) 297 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:26:10.345 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph osd stat -f json 2024-01-27T23:26:10.697 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:10 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:08.981873+0000 mgr.smithi073.msdoog (mgr.14182) 44 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:26:10.697 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:10 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:26:09.103050+0000 mgr.smithi073.msdoog (mgr.14182) 45 : cephadm [INF] Deploying daemon osd.2 on smithi186 2024-01-27T23:26:10.736 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:10 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:08.981873+0000 mgr.smithi073.msdoog (mgr.14182) 44 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:26:10.736 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:10 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:26:09.103050+0000 mgr.smithi073.msdoog (mgr.14182) 45 : cephadm [INF] Deploying daemon osd.2 on smithi186 2024-01-27T23:26:11.982 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:26:12.417 INFO:teuthology.orchestra.run.smithi073.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1706397960,"num_remapped_pgs":0} 2024-01-27T23:26:12.532 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:12 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:10.982104+0000 mgr.smithi073.msdoog (mgr.14182) 46 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:26:12.532 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:12 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:11.813210+0000 mon.smithi073 (mon.0) 298 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:12.532 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:12 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:11.814178+0000 mon.smithi073 (mon.0) 299 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-01-27T23:26:12.532 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:12 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:11.815051+0000 mon.smithi073 (mon.0) 300 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:26:12.532 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:12 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:11.994160+0000 mon.smithi073 (mon.0) 301 : audit [DBG] from='client.? 172.21.15.73:0/471798644' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:26:12.532 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:12 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:12.293295+0000 mon.smithi186 (mon.1) 10 : audit [INF] from='osd.0 [v2:172.21.15.186:6800/3439896446,v1:172.21.15.186:6801/3439896446]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-01-27T23:26:12.532 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:12 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:12.293917+0000 mon.smithi073 (mon.0) 302 : audit [INF] from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-01-27T23:26:12.552 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:12 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:10.982104+0000 mgr.smithi073.msdoog (mgr.14182) 46 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:26:12.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:12 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:11.813210+0000 mon.smithi073 (mon.0) 298 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:12.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:12 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:11.814178+0000 mon.smithi073 (mon.0) 299 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-01-27T23:26:12.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:12 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:11.815051+0000 mon.smithi073 (mon.0) 300 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:26:12.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:12 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:11.994160+0000 mon.smithi073 (mon.0) 301 : audit [DBG] from='client.? 172.21.15.73:0/471798644' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:26:12.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:12 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:12.293295+0000 mon.smithi186 (mon.1) 10 : audit [INF] from='osd.0 [v2:172.21.15.186:6800/3439896446,v1:172.21.15.186:6801/3439896446]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-01-27T23:26:12.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:12 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:12.293917+0000 mon.smithi073 (mon.0) 302 : audit [INF] from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-01-27T23:26:13.419 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph osd stat -f json 2024-01-27T23:26:13.885 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:13 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:26:11.820144+0000 mgr.smithi073.msdoog (mgr.14182) 47 : cephadm [INF] Deploying daemon osd.3 on smithi073 2024-01-27T23:26:13.885 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:13 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:12.692789+0000 mon.smithi073 (mon.0) 303 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:13.885 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:13 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:12.693390+0000 mon.smithi073 (mon.0) 304 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-01-27T23:26:13.885 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:13 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:12.693908+0000 mon.smithi073 (mon.0) 305 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:26:13.886 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:13 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:26:12.694339+0000 mgr.smithi073.msdoog (mgr.14182) 48 : cephadm [INF] Deploying daemon osd.4 on smithi186 2024-01-27T23:26:13.886 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:13 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:12.819325+0000 mon.smithi073 (mon.0) 306 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-01-27T23:26:13.886 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:13 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:12.819371+0000 mon.smithi073 (mon.0) 307 : cluster [DBG] osdmap e14: 8 total, 0 up, 8 in 2024-01-27T23:26:13.886 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:13 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:12.819460+0000 mon.smithi073 (mon.0) 308 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-27T23:26:13.886 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:13 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:12.819708+0000 mon.smithi073 (mon.0) 309 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:26:13.886 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:13 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:12.819841+0000 mon.smithi073 (mon.0) 310 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:26:13.886 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:13 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:12.819970+0000 mon.smithi073 (mon.0) 311 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:26:13.886 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:13 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:12.820036+0000 mon.smithi186 (mon.1) 11 : audit [INF] from='osd.0 [v2:172.21.15.186:6800/3439896446,v1:172.21.15.186:6801/3439896446]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi186", "root=default"]}]: dispatch 2024-01-27T23:26:13.886 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:13 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:12.820098+0000 mon.smithi073 (mon.0) 312 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:26:13.886 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:13 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:12.820332+0000 mon.smithi073 (mon.0) 313 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:26:13.886 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:13 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:12.820513+0000 mon.smithi073 (mon.0) 314 : audit [INF] from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi186", "root=default"]}]: dispatch 2024-01-27T23:26:13.886 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:13 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:12.820686+0000 mon.smithi073 (mon.0) 315 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:26:13.886 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:13 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:12.820820+0000 mon.smithi073 (mon.0) 316 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:26:14.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:13 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:26:11.820144+0000 mgr.smithi073.msdoog (mgr.14182) 47 : cephadm [INF] Deploying daemon osd.3 on smithi073 2024-01-27T23:26:14.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:13 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:12.692789+0000 mon.smithi073 (mon.0) 303 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:14.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:13 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:12.693390+0000 mon.smithi073 (mon.0) 304 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-01-27T23:26:14.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:13 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:12.693908+0000 mon.smithi073 (mon.0) 305 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:26:14.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:13 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:26:12.694339+0000 mgr.smithi073.msdoog (mgr.14182) 48 : cephadm [INF] Deploying daemon osd.4 on smithi186 2024-01-27T23:26:14.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:13 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:12.819325+0000 mon.smithi073 (mon.0) 306 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-01-27T23:26:14.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:13 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:12.819371+0000 mon.smithi073 (mon.0) 307 : cluster [DBG] osdmap e14: 8 total, 0 up, 8 in 2024-01-27T23:26:14.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:13 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:12.819460+0000 mon.smithi073 (mon.0) 308 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-27T23:26:14.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:13 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:12.819708+0000 mon.smithi073 (mon.0) 309 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:26:14.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:13 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:12.819841+0000 mon.smithi073 (mon.0) 310 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:26:14.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:13 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:12.819970+0000 mon.smithi073 (mon.0) 311 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:26:14.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:13 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:12.820036+0000 mon.smithi186 (mon.1) 11 : audit [INF] from='osd.0 [v2:172.21.15.186:6800/3439896446,v1:172.21.15.186:6801/3439896446]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi186", "root=default"]}]: dispatch 2024-01-27T23:26:14.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:13 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:12.820098+0000 mon.smithi073 (mon.0) 312 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:26:14.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:13 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:12.820332+0000 mon.smithi073 (mon.0) 313 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:26:14.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:13 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:12.820513+0000 mon.smithi073 (mon.0) 314 : audit [INF] from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi186", "root=default"]}]: dispatch 2024-01-27T23:26:14.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:13 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:12.820686+0000 mon.smithi073 (mon.0) 315 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:26:14.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:13 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:12.820820+0000 mon.smithi073 (mon.0) 316 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:26:14.705 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:14 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:12.982320+0000 mgr.smithi073.msdoog (mgr.14182) 49 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:26:14.705 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:14 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:13.822359+0000 mon.smithi073 (mon.0) 317 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi186", "root=default"]}]': finished 2024-01-27T23:26:14.705 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:14 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:13.822416+0000 mon.smithi073 (mon.0) 318 : cluster [DBG] osdmap e15: 8 total, 0 up, 8 in 2024-01-27T23:26:14.706 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:14 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:13.823406+0000 mon.smithi073 (mon.0) 319 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-27T23:26:14.706 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:14 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:13.823703+0000 mon.smithi073 (mon.0) 320 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:26:14.706 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:14 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:13.825342+0000 mon.smithi073 (mon.0) 321 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:26:14.706 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:14 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:13.825515+0000 mon.smithi073 (mon.0) 322 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:26:14.706 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:14 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:13.825660+0000 mon.smithi073 (mon.0) 323 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:26:14.706 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:14 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:13.825830+0000 mon.smithi073 (mon.0) 324 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:26:14.706 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:14 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:13.825996+0000 mon.smithi073 (mon.0) 325 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:26:14.706 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:14 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:13.826151+0000 mon.smithi073 (mon.0) 326 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:26:14.706 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:14 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:13.826311+0000 mon.smithi073 (mon.0) 327 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-27T23:26:14.953 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:14 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:12.982320+0000 mgr.smithi073.msdoog (mgr.14182) 49 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:26:14.953 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:14 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:13.822359+0000 mon.smithi073 (mon.0) 317 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi186", "root=default"]}]': finished 2024-01-27T23:26:14.953 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:14 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:13.822416+0000 mon.smithi073 (mon.0) 318 : cluster [DBG] osdmap e15: 8 total, 0 up, 8 in 2024-01-27T23:26:14.954 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:14 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:13.823406+0000 mon.smithi073 (mon.0) 319 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-27T23:26:14.954 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:14 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:13.823703+0000 mon.smithi073 (mon.0) 320 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:26:14.954 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:14 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:13.825342+0000 mon.smithi073 (mon.0) 321 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:26:14.954 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:14 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:13.825515+0000 mon.smithi073 (mon.0) 322 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:26:14.954 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:14 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:13.825660+0000 mon.smithi073 (mon.0) 323 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:26:14.954 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:14 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:13.825830+0000 mon.smithi073 (mon.0) 324 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:26:14.954 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:14 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:13.825996+0000 mon.smithi073 (mon.0) 325 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:26:14.954 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:14 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:13.826151+0000 mon.smithi073 (mon.0) 326 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:26:14.954 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:14 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:13.826311+0000 mon.smithi073 (mon.0) 327 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-27T23:26:15.018 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:26:15.395 INFO:teuthology.orchestra.run.smithi073.stdout:{"epoch":16,"num_osds":8,"num_up_osds":1,"osd_up_since":1706397974,"num_in_osds":8,"osd_in_since":1706397960,"num_remapped_pgs":0} 2024-01-27T23:26:16.180 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:15 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:13.247975+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-01-27T23:26:16.180 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:15 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:13.248047+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-01-27T23:26:16.180 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:15 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:14.827065+0000 mon.smithi073 (mon.0) 328 : cluster [INF] osd.0 [v2:172.21.15.186:6800/3439896446,v1:172.21.15.186:6801/3439896446] boot 2024-01-27T23:26:16.180 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:15 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:14.827094+0000 mon.smithi073 (mon.0) 329 : cluster [DBG] osdmap e16: 8 total, 1 up, 8 in 2024-01-27T23:26:16.180 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:15 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:14.827176+0000 mon.smithi073 (mon.0) 330 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-27T23:26:16.180 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:15 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:14.827436+0000 mon.smithi073 (mon.0) 331 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:26:16.180 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:15 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:14.827558+0000 mon.smithi073 (mon.0) 332 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:26:16.180 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:15 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:14.827685+0000 mon.smithi073 (mon.0) 333 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:26:16.180 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:15 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:14.827816+0000 mon.smithi073 (mon.0) 334 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:26:16.180 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:15 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:14.827934+0000 mon.smithi073 (mon.0) 335 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:26:16.181 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:15 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:14.828052+0000 mon.smithi073 (mon.0) 336 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:26:16.181 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:15 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:14.828172+0000 mon.smithi073 (mon.0) 337 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:26:16.181 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:15 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:14.982524+0000 mgr.smithi073.msdoog (mgr.14182) 50 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:26:16.181 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:15 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:15.027553+0000 mon.smithi073 (mon.0) 338 : audit [DBG] from='client.? 172.21.15.73:0/1758224623' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:26:16.181 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:15 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:15.030543+0000 mon.smithi073 (mon.0) 339 : audit [INF] from='osd.1 [v2:172.21.15.73:6802/556786561,v1:172.21.15.73:6803/556786561]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-01-27T23:26:16.303 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:15 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:13.247975+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-01-27T23:26:16.303 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:15 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:13.248047+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-01-27T23:26:16.303 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:15 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:14.827065+0000 mon.smithi073 (mon.0) 328 : cluster [INF] osd.0 [v2:172.21.15.186:6800/3439896446,v1:172.21.15.186:6801/3439896446] boot 2024-01-27T23:26:16.303 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:15 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:14.827094+0000 mon.smithi073 (mon.0) 329 : cluster [DBG] osdmap e16: 8 total, 1 up, 8 in 2024-01-27T23:26:16.303 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:15 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:14.827176+0000 mon.smithi073 (mon.0) 330 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-27T23:26:16.303 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:15 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:14.827436+0000 mon.smithi073 (mon.0) 331 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:26:16.303 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:15 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:14.827558+0000 mon.smithi073 (mon.0) 332 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:26:16.303 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:15 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:14.827685+0000 mon.smithi073 (mon.0) 333 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:26:16.303 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:15 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:14.827816+0000 mon.smithi073 (mon.0) 334 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:26:16.303 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:15 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:14.827934+0000 mon.smithi073 (mon.0) 335 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:26:16.303 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:15 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:14.828052+0000 mon.smithi073 (mon.0) 336 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:26:16.303 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:15 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:14.828172+0000 mon.smithi073 (mon.0) 337 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:26:16.304 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:15 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:14.982524+0000 mgr.smithi073.msdoog (mgr.14182) 50 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-27T23:26:16.304 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:15 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:15.027553+0000 mon.smithi073 (mon.0) 338 : audit [DBG] from='client.? 172.21.15.73:0/1758224623' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:26:16.304 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:15 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:15.030543+0000 mon.smithi073 (mon.0) 339 : audit [INF] from='osd.1 [v2:172.21.15.73:6802/556786561,v1:172.21.15.73:6803/556786561]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-01-27T23:26:16.396 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph osd stat -f json 2024-01-27T23:26:16.919 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:15.832204+0000 mon.smithi073 (mon.0) 340 : audit [INF] from='osd.1 [v2:172.21.15.73:6802/556786561,v1:172.21.15.73:6803/556786561]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-01-27T23:26:16.919 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:15.832273+0000 mon.smithi073 (mon.0) 341 : cluster [DBG] osdmap e17: 8 total, 1 up, 8 in 2024-01-27T23:26:16.919 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:15.832413+0000 mon.smithi073 (mon.0) 342 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:26:16.919 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:15.832804+0000 mon.smithi073 (mon.0) 343 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:26:16.919 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:15.833049+0000 mon.smithi073 (mon.0) 344 : audit [INF] from='osd.1 [v2:172.21.15.73:6802/556786561,v1:172.21.15.73:6803/556786561]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi073", "root=default"]}]: dispatch 2024-01-27T23:26:16.919 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:15.833360+0000 mon.smithi073 (mon.0) 345 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:26:16.919 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:15.833550+0000 mon.smithi073 (mon.0) 346 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:26:16.919 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:15.833673+0000 mon.smithi073 (mon.0) 347 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:26:16.919 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:15.833856+0000 mon.smithi073 (mon.0) 348 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:26:16.919 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:15.833977+0000 mon.smithi073 (mon.0) 349 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:26:16.919 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:15.897953+0000 mon.smithi186 (mon.1) 12 : audit [INF] from='osd.2 [v2:172.21.15.186:6808/4197408490,v1:172.21.15.186:6809/4197408490]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-01-27T23:26:16.919 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:15.898292+0000 mon.smithi073 (mon.0) 350 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-01-27T23:26:16.919 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:15.982872+0000 mon.smithi073 (mon.0) 351 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:16.920 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:15.983512+0000 mon.smithi073 (mon.0) 352 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-01-27T23:26:16.920 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:15.984097+0000 mon.smithi073 (mon.0) 353 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:26:16.920 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:26:15.984593+0000 mgr.smithi073.msdoog (mgr.14182) 51 : cephadm [INF] Deploying daemon osd.5 on smithi073 2024-01-27T23:26:16.920 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:16.734388+0000 mon.smithi073 (mon.0) 354 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:16.920 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:16.735019+0000 mon.smithi073 (mon.0) 355 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get", "entity": "osd.6"}]: dispatch 2024-01-27T23:26:16.920 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:16.735631+0000 mon.smithi073 (mon.0) 356 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:26:16.920 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:26:16.736122+0000 mgr.smithi073.msdoog (mgr.14182) 52 : cephadm [INF] Deploying daemon osd.6 on smithi186 2024-01-27T23:26:17.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:15.832204+0000 mon.smithi073 (mon.0) 340 : audit [INF] from='osd.1 [v2:172.21.15.73:6802/556786561,v1:172.21.15.73:6803/556786561]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-01-27T23:26:17.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:15.832273+0000 mon.smithi073 (mon.0) 341 : cluster [DBG] osdmap e17: 8 total, 1 up, 8 in 2024-01-27T23:26:17.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:15.832413+0000 mon.smithi073 (mon.0) 342 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:26:17.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:15.832804+0000 mon.smithi073 (mon.0) 343 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:26:17.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:15.833049+0000 mon.smithi073 (mon.0) 344 : audit [INF] from='osd.1 [v2:172.21.15.73:6802/556786561,v1:172.21.15.73:6803/556786561]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi073", "root=default"]}]: dispatch 2024-01-27T23:26:17.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:15.833360+0000 mon.smithi073 (mon.0) 345 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:26:17.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:15.833550+0000 mon.smithi073 (mon.0) 346 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:26:17.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:15.833673+0000 mon.smithi073 (mon.0) 347 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:26:17.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:15.833856+0000 mon.smithi073 (mon.0) 348 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:26:17.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:15.833977+0000 mon.smithi073 (mon.0) 349 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:26:17.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:15.897953+0000 mon.smithi186 (mon.1) 12 : audit [INF] from='osd.2 [v2:172.21.15.186:6808/4197408490,v1:172.21.15.186:6809/4197408490]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-01-27T23:26:17.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:15.898292+0000 mon.smithi073 (mon.0) 350 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-01-27T23:26:17.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:15.982872+0000 mon.smithi073 (mon.0) 351 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:17.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:15.983512+0000 mon.smithi073 (mon.0) 352 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-01-27T23:26:17.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:15.984097+0000 mon.smithi073 (mon.0) 353 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:26:17.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:26:15.984593+0000 mgr.smithi073.msdoog (mgr.14182) 51 : cephadm [INF] Deploying daemon osd.5 on smithi073 2024-01-27T23:26:17.005 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:16.734388+0000 mon.smithi073 (mon.0) 354 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:17.005 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:16.735019+0000 mon.smithi073 (mon.0) 355 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get", "entity": "osd.6"}]: dispatch 2024-01-27T23:26:17.005 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:16.735631+0000 mon.smithi073 (mon.0) 356 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:26:17.005 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:26:16.736122+0000 mgr.smithi073.msdoog (mgr.14182) 52 : cephadm [INF] Deploying daemon osd.6 on smithi186 2024-01-27T23:26:17.970 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:17 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:16.833603+0000 mon.smithi073 (mon.0) 357 : audit [INF] from='osd.1 [v2:172.21.15.73:6802/556786561,v1:172.21.15.73:6803/556786561]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi073", "root=default"]}]': finished 2024-01-27T23:26:17.970 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:17 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:16.833654+0000 mon.smithi073 (mon.0) 358 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-01-27T23:26:17.970 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:17 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:16.833700+0000 mon.smithi073 (mon.0) 359 : cluster [DBG] osdmap e18: 8 total, 1 up, 8 in 2024-01-27T23:26:17.970 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:17 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:16.834270+0000 mon.smithi073 (mon.0) 360 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:26:17.970 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:17 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:16.834513+0000 mon.smithi073 (mon.0) 361 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:26:17.970 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:17 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:16.834927+0000 mon.smithi073 (mon.0) 362 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:26:17.970 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:17 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:16.835084+0000 mon.smithi073 (mon.0) 363 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:26:17.971 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:17 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:16.835258+0000 mon.smithi073 (mon.0) 364 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:26:17.971 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:17 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:16.835453+0000 mon.smithi073 (mon.0) 365 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:26:17.971 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:17 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:16.835641+0000 mon.smithi073 (mon.0) 366 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:26:17.971 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:17 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:16.837114+0000 mon.smithi186 (mon.1) 13 : audit [INF] from='osd.2 [v2:172.21.15.186:6808/4197408490,v1:172.21.15.186:6809/4197408490]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi186", "root=default"]}]: dispatch 2024-01-27T23:26:17.971 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:17 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:16.841048+0000 mon.smithi073 (mon.0) 367 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:26:17.971 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:17 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:16.841311+0000 mon.smithi073 (mon.0) 368 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi186", "root=default"]}]: dispatch 2024-01-27T23:26:17.971 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:17 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:16.982794+0000 mgr.smithi073.msdoog (mgr.14182) 53 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-01-27T23:26:18.004 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:26:18.163 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:17 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:16.833603+0000 mon.smithi073 (mon.0) 357 : audit [INF] from='osd.1 [v2:172.21.15.73:6802/556786561,v1:172.21.15.73:6803/556786561]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi073", "root=default"]}]': finished 2024-01-27T23:26:18.164 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:17 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:16.833654+0000 mon.smithi073 (mon.0) 358 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-01-27T23:26:18.164 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:17 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:16.833700+0000 mon.smithi073 (mon.0) 359 : cluster [DBG] osdmap e18: 8 total, 1 up, 8 in 2024-01-27T23:26:18.164 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:17 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:16.834270+0000 mon.smithi073 (mon.0) 360 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:26:18.164 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:17 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:16.834513+0000 mon.smithi073 (mon.0) 361 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:26:18.164 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:17 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:16.834927+0000 mon.smithi073 (mon.0) 362 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:26:18.164 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:17 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:16.835084+0000 mon.smithi073 (mon.0) 363 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:26:18.164 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:17 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:16.835258+0000 mon.smithi073 (mon.0) 364 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:26:18.164 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:17 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:16.835453+0000 mon.smithi073 (mon.0) 365 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:26:18.164 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:17 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:16.835641+0000 mon.smithi073 (mon.0) 366 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:26:18.164 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:17 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:16.837114+0000 mon.smithi186 (mon.1) 13 : audit [INF] from='osd.2 [v2:172.21.15.186:6808/4197408490,v1:172.21.15.186:6809/4197408490]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi186", "root=default"]}]: dispatch 2024-01-27T23:26:18.164 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:17 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:16.841048+0000 mon.smithi073 (mon.0) 367 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:26:18.164 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:17 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:16.841311+0000 mon.smithi073 (mon.0) 368 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi186", "root=default"]}]: dispatch 2024-01-27T23:26:18.165 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:17 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:16.982794+0000 mgr.smithi073.msdoog (mgr.14182) 53 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-01-27T23:26:18.465 INFO:teuthology.orchestra.run.smithi073.stdout:{"epoch":19,"num_osds":8,"num_up_osds":2,"osd_up_since":1706397977,"num_in_osds":8,"osd_in_since":1706397960,"num_remapped_pgs":0} 2024-01-27T23:26:19.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:18 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:16.046114+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-01-27T23:26:19.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:18 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:16.046159+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-01-27T23:26:19.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:18 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:17.839648+0000 mon.smithi073 (mon.0) 369 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:26:19.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:18 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:17.845886+0000 mon.smithi073 (mon.0) 370 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi186", "root=default"]}]': finished 2024-01-27T23:26:19.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:18 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:17.845946+0000 mon.smithi073 (mon.0) 371 : cluster [INF] osd.1 [v2:172.21.15.73:6802/556786561,v1:172.21.15.73:6803/556786561] boot 2024-01-27T23:26:19.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:18 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:17.845965+0000 mon.smithi073 (mon.0) 372 : cluster [DBG] osdmap e19: 8 total, 2 up, 8 in 2024-01-27T23:26:19.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:18 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:17.846634+0000 mon.smithi073 (mon.0) 373 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:26:19.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:18 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:17.846959+0000 mon.smithi073 (mon.0) 374 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:26:19.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:18 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:17.847162+0000 mon.smithi073 (mon.0) 375 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:26:19.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:18 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:17.847359+0000 mon.smithi073 (mon.0) 376 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:26:19.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:18 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:17.847558+0000 mon.smithi073 (mon.0) 377 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:26:19.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:18 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:17.847760+0000 mon.smithi073 (mon.0) 378 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:26:19.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:18 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:17.847959+0000 mon.smithi073 (mon.0) 379 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:26:19.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:18 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:17.851275+0000 mon.smithi073 (mon.0) 380 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:26:19.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:18 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:18.015945+0000 mon.smithi073 (mon.0) 381 : audit [DBG] from='client.? 172.21.15.73:0/1779012297' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:26:19.090 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:18 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:16.046114+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-01-27T23:26:19.090 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:18 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:16.046159+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-01-27T23:26:19.090 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:18 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:17.839648+0000 mon.smithi073 (mon.0) 369 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:26:19.090 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:18 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:17.845886+0000 mon.smithi073 (mon.0) 370 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi186", "root=default"]}]': finished 2024-01-27T23:26:19.090 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:18 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:17.845946+0000 mon.smithi073 (mon.0) 371 : cluster [INF] osd.1 [v2:172.21.15.73:6802/556786561,v1:172.21.15.73:6803/556786561] boot 2024-01-27T23:26:19.090 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:18 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:17.845965+0000 mon.smithi073 (mon.0) 372 : cluster [DBG] osdmap e19: 8 total, 2 up, 8 in 2024-01-27T23:26:19.090 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:18 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:17.846634+0000 mon.smithi073 (mon.0) 373 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-01-27T23:26:19.091 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:18 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:17.846959+0000 mon.smithi073 (mon.0) 374 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:26:19.091 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:18 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:17.847162+0000 mon.smithi073 (mon.0) 375 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:26:19.091 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:18 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:17.847359+0000 mon.smithi073 (mon.0) 376 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:26:19.091 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:18 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:17.847558+0000 mon.smithi073 (mon.0) 377 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:26:19.091 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:18 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:17.847760+0000 mon.smithi073 (mon.0) 378 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:26:19.091 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:18 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:17.847959+0000 mon.smithi073 (mon.0) 379 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:26:19.091 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:18 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:17.851275+0000 mon.smithi073 (mon.0) 380 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:26:19.091 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:18 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:18.015945+0000 mon.smithi073 (mon.0) 381 : audit [DBG] from='client.? 172.21.15.73:0/1779012297' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:26:19.466 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph osd stat -f json 2024-01-27T23:26:19.929 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:19 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:16.895766+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-01-27T23:26:19.929 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:19 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:16.895820+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-01-27T23:26:19.930 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:19 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:18.849739+0000 mon.smithi073 (mon.0) 382 : cluster [INF] osd.2 [v2:172.21.15.186:6808/4197408490,v1:172.21.15.186:6809/4197408490] boot 2024-01-27T23:26:19.930 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:19 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:18.849778+0000 mon.smithi073 (mon.0) 383 : cluster [DBG] osdmap e20: 8 total, 3 up, 8 in 2024-01-27T23:26:19.930 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:19 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:18.849867+0000 mon.smithi073 (mon.0) 384 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:26:19.930 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:19 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:18.850167+0000 mon.smithi073 (mon.0) 385 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:26:19.930 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:19 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:18.850309+0000 mon.smithi073 (mon.0) 386 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:26:19.930 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:19 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:18.850433+0000 mon.smithi073 (mon.0) 387 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:26:19.930 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:19 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:18.850562+0000 mon.smithi073 (mon.0) 388 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:26:19.930 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:19 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:18.850684+0000 mon.smithi073 (mon.0) 389 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:26:19.930 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:19 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:18.850863+0000 mon.smithi073 (mon.0) 390 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd pool create", "format": "json", "pool": "device_health_metrics", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]: dispatch 2024-01-27T23:26:19.930 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:19 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:18.983067+0000 mgr.smithi073.msdoog (mgr.14182) 54 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 871 MiB used, 267 GiB / 268 GiB avail 2024-01-27T23:26:19.930 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:19 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:19.199859+0000 mon.smithi073 (mon.0) 391 : audit [INF] from='osd.3 [v2:172.21.15.73:6810/4035843720,v1:172.21.15.73:6811/4035843720]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-01-27T23:26:20.206 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:19 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:16.895766+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-01-27T23:26:20.206 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:19 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:16.895820+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-01-27T23:26:20.206 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:19 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:18.849739+0000 mon.smithi073 (mon.0) 382 : cluster [INF] osd.2 [v2:172.21.15.186:6808/4197408490,v1:172.21.15.186:6809/4197408490] boot 2024-01-27T23:26:20.206 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:19 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:18.849778+0000 mon.smithi073 (mon.0) 383 : cluster [DBG] osdmap e20: 8 total, 3 up, 8 in 2024-01-27T23:26:20.207 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:19 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:18.849867+0000 mon.smithi073 (mon.0) 384 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-01-27T23:26:20.207 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:19 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:18.850167+0000 mon.smithi073 (mon.0) 385 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:26:20.207 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:19 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:18.850309+0000 mon.smithi073 (mon.0) 386 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:26:20.207 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:19 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:18.850433+0000 mon.smithi073 (mon.0) 387 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:26:20.207 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:19 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:18.850562+0000 mon.smithi073 (mon.0) 388 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:26:20.207 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:19 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:18.850684+0000 mon.smithi073 (mon.0) 389 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:26:20.207 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:19 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:18.850863+0000 mon.smithi073 (mon.0) 390 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd pool create", "format": "json", "pool": "device_health_metrics", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]: dispatch 2024-01-27T23:26:20.207 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:19 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:18.983067+0000 mgr.smithi073.msdoog (mgr.14182) 54 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 871 MiB used, 267 GiB / 268 GiB avail 2024-01-27T23:26:20.207 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:19 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:19.199859+0000 mon.smithi073 (mon.0) 391 : audit [INF] from='osd.3 [v2:172.21.15.73:6810/4035843720,v1:172.21.15.73:6811/4035843720]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-01-27T23:26:21.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:19.855142+0000 mon.smithi073 (mon.0) 392 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd='[{"prefix": "osd pool create", "format": "json", "pool": "device_health_metrics", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]': finished 2024-01-27T23:26:21.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:19.855209+0000 mon.smithi073 (mon.0) 393 : audit [INF] from='osd.3 [v2:172.21.15.73:6810/4035843720,v1:172.21.15.73:6811/4035843720]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-01-27T23:26:21.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:19.855261+0000 mon.smithi073 (mon.0) 394 : cluster [DBG] osdmap e21: 8 total, 3 up, 8 in 2024-01-27T23:26:21.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:19.855404+0000 mon.smithi073 (mon.0) 395 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:26:21.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:19.855910+0000 mon.smithi073 (mon.0) 396 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:26:21.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:19.856059+0000 mon.smithi073 (mon.0) 397 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:26:21.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:19.856222+0000 mon.smithi073 (mon.0) 398 : audit [INF] from='osd.3 [v2:172.21.15.73:6810/4035843720,v1:172.21.15.73:6811/4035843720]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi073", "root=default"]}]: dispatch 2024-01-27T23:26:21.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:19.856436+0000 mon.smithi073 (mon.0) 399 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:26:21.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:19.856604+0000 mon.smithi073 (mon.0) 400 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:26:21.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:19.857494+0000 mon.smithi073 (mon.0) 401 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": "device_health_metrics", "app": "mgr_devicehealth"}]: dispatch 2024-01-27T23:26:21.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:19.932552+0000 mon.smithi073 (mon.0) 402 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:21.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:19.933298+0000 mon.smithi073 (mon.0) 403 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get", "entity": "osd.7"}]: dispatch 2024-01-27T23:26:21.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:19.933878+0000 mon.smithi073 (mon.0) 404 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:26:21.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:26:19.934368+0000 mgr.smithi073.msdoog (mgr.14182) 55 : cephadm [INF] Deploying daemon osd.7 on smithi073 2024-01-27T23:26:21.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:19.944211+0000 mon.smithi186 (mon.1) 14 : audit [INF] from='osd.4 [v2:172.21.15.186:6816/813067810,v1:172.21.15.186:6817/813067810]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-01-27T23:26:21.005 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:19.944557+0000 mon.smithi073 (mon.0) 405 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-01-27T23:26:21.005 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:20.362339+0000 mon.smithi073 (mon.0) 406 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:21.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:19.855142+0000 mon.smithi073 (mon.0) 392 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd='[{"prefix": "osd pool create", "format": "json", "pool": "device_health_metrics", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]': finished 2024-01-27T23:26:21.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:19.855209+0000 mon.smithi073 (mon.0) 393 : audit [INF] from='osd.3 [v2:172.21.15.73:6810/4035843720,v1:172.21.15.73:6811/4035843720]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-01-27T23:26:21.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:19.855261+0000 mon.smithi073 (mon.0) 394 : cluster [DBG] osdmap e21: 8 total, 3 up, 8 in 2024-01-27T23:26:21.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:19.855404+0000 mon.smithi073 (mon.0) 395 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:26:21.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:19.855910+0000 mon.smithi073 (mon.0) 396 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:26:21.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:19.856059+0000 mon.smithi073 (mon.0) 397 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:26:21.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:19.856222+0000 mon.smithi073 (mon.0) 398 : audit [INF] from='osd.3 [v2:172.21.15.73:6810/4035843720,v1:172.21.15.73:6811/4035843720]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi073", "root=default"]}]: dispatch 2024-01-27T23:26:21.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:19.856436+0000 mon.smithi073 (mon.0) 399 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:26:21.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:19.856604+0000 mon.smithi073 (mon.0) 400 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:26:21.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:19.857494+0000 mon.smithi073 (mon.0) 401 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": "device_health_metrics", "app": "mgr_devicehealth"}]: dispatch 2024-01-27T23:26:21.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:19.932552+0000 mon.smithi073 (mon.0) 402 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:21.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:19.933298+0000 mon.smithi073 (mon.0) 403 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get", "entity": "osd.7"}]: dispatch 2024-01-27T23:26:21.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:19.933878+0000 mon.smithi073 (mon.0) 404 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:26:21.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:26:19.934368+0000 mgr.smithi073.msdoog (mgr.14182) 55 : cephadm [INF] Deploying daemon osd.7 on smithi073 2024-01-27T23:26:21.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:19.944211+0000 mon.smithi186 (mon.1) 14 : audit [INF] from='osd.4 [v2:172.21.15.186:6816/813067810,v1:172.21.15.186:6817/813067810]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-01-27T23:26:21.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:19.944557+0000 mon.smithi073 (mon.0) 405 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-01-27T23:26:21.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:20.362339+0000 mon.smithi073 (mon.0) 406 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:21.293 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:26:21.724 INFO:teuthology.orchestra.run.smithi073.stdout:{"epoch":22,"num_osds":8,"num_up_osds":3,"osd_up_since":1706397978,"num_in_osds":8,"osd_in_since":1706397960,"num_remapped_pgs":0} 2024-01-27T23:26:21.990 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:21 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:20.855862+0000 mon.smithi073 (mon.0) 407 : audit [INF] from='osd.3 [v2:172.21.15.73:6810/4035843720,v1:172.21.15.73:6811/4035843720]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi073", "root=default"]}]': finished 2024-01-27T23:26:21.990 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:21 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:20.855944+0000 mon.smithi073 (mon.0) 408 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": "device_health_metrics", "app": "mgr_devicehealth"}]': finished 2024-01-27T23:26:21.990 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:21 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:20.856006+0000 mon.smithi073 (mon.0) 409 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-01-27T23:26:21.990 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:21 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:20.856084+0000 mon.smithi073 (mon.0) 410 : cluster [DBG] osdmap e22: 8 total, 3 up, 8 in 2024-01-27T23:26:21.990 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:21 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:20.856428+0000 mon.smithi073 (mon.0) 411 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:26:21.991 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:21 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:20.856676+0000 mon.smithi073 (mon.0) 412 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:26:21.991 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:21 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:20.856825+0000 mon.smithi186 (mon.1) 15 : audit [INF] from='osd.4 [v2:172.21.15.186:6816/813067810,v1:172.21.15.186:6817/813067810]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi186", "root=default"]}]: dispatch 2024-01-27T23:26:21.991 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:21 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:20.860026+0000 mon.smithi073 (mon.0) 413 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:26:21.991 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:21 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:20.860618+0000 mon.smithi073 (mon.0) 414 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:26:21.991 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:21 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:20.860884+0000 mon.smithi073 (mon.0) 415 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi186", "root=default"]}]: dispatch 2024-01-27T23:26:21.991 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:21 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:20.861155+0000 mon.smithi073 (mon.0) 416 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:26:21.991 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:21 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:20.861492+0000 mon.smithi073 (mon.0) 417 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:26:21.991 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:21 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:20.983318+0000 mgr.smithi073.msdoog (mgr.14182) 56 : cluster [DBG] pgmap v48: 1 pgs: 1 unknown; 0 B data, 871 MiB used, 267 GiB / 268 GiB avail 2024-01-27T23:26:21.991 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:21 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:21.305548+0000 mon.smithi073 (mon.0) 418 : audit [DBG] from='client.? 172.21.15.73:0/460008487' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:26:21.991 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:21 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:21.856613+0000 mon.smithi073 (mon.0) 419 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi186", "root=default"]}]': finished 2024-01-27T23:26:21.991 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:21 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:21.856676+0000 mon.smithi073 (mon.0) 420 : cluster [INF] osd.3 [v2:172.21.15.73:6810/4035843720,v1:172.21.15.73:6811/4035843720] boot 2024-01-27T23:26:21.991 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:21 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:21.856697+0000 mon.smithi073 (mon.0) 421 : cluster [DBG] osdmap e23: 8 total, 4 up, 8 in 2024-01-27T23:26:21.991 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:21 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:21.856953+0000 mon.smithi073 (mon.0) 422 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:26:21.991 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:21 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:21.857168+0000 mon.smithi073 (mon.0) 423 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:26:22.157 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:21 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:20.855862+0000 mon.smithi073 (mon.0) 407 : audit [INF] from='osd.3 [v2:172.21.15.73:6810/4035843720,v1:172.21.15.73:6811/4035843720]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi073", "root=default"]}]': finished 2024-01-27T23:26:22.158 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:21 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:20.855944+0000 mon.smithi073 (mon.0) 408 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": "device_health_metrics", "app": "mgr_devicehealth"}]': finished 2024-01-27T23:26:22.158 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:21 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:20.856006+0000 mon.smithi073 (mon.0) 409 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-01-27T23:26:22.158 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:21 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:20.856084+0000 mon.smithi073 (mon.0) 410 : cluster [DBG] osdmap e22: 8 total, 3 up, 8 in 2024-01-27T23:26:22.158 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:21 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:20.856428+0000 mon.smithi073 (mon.0) 411 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:26:22.158 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:21 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:20.856676+0000 mon.smithi073 (mon.0) 412 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:26:22.158 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:21 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:20.856825+0000 mon.smithi186 (mon.1) 15 : audit [INF] from='osd.4 [v2:172.21.15.186:6816/813067810,v1:172.21.15.186:6817/813067810]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi186", "root=default"]}]: dispatch 2024-01-27T23:26:22.158 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:21 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:20.860026+0000 mon.smithi073 (mon.0) 413 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:26:22.158 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:21 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:20.860618+0000 mon.smithi073 (mon.0) 414 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:26:22.158 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:21 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:20.860884+0000 mon.smithi073 (mon.0) 415 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi186", "root=default"]}]: dispatch 2024-01-27T23:26:22.158 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:21 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:20.861155+0000 mon.smithi073 (mon.0) 416 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:26:22.158 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:21 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:20.861492+0000 mon.smithi073 (mon.0) 417 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:26:22.158 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:21 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:20.983318+0000 mgr.smithi073.msdoog (mgr.14182) 56 : cluster [DBG] pgmap v48: 1 pgs: 1 unknown; 0 B data, 871 MiB used, 267 GiB / 268 GiB avail 2024-01-27T23:26:22.158 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:21 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:21.305548+0000 mon.smithi073 (mon.0) 418 : audit [DBG] from='client.? 172.21.15.73:0/460008487' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:26:22.159 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:21 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:21.856613+0000 mon.smithi073 (mon.0) 419 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi186", "root=default"]}]': finished 2024-01-27T23:26:22.159 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:21 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:21.856676+0000 mon.smithi073 (mon.0) 420 : cluster [INF] osd.3 [v2:172.21.15.73:6810/4035843720,v1:172.21.15.73:6811/4035843720] boot 2024-01-27T23:26:22.159 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:21 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:21.856697+0000 mon.smithi073 (mon.0) 421 : cluster [DBG] osdmap e23: 8 total, 4 up, 8 in 2024-01-27T23:26:22.159 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:21 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:21.856953+0000 mon.smithi073 (mon.0) 422 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-01-27T23:26:22.159 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:21 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:21.857168+0000 mon.smithi073 (mon.0) 423 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:26:22.725 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph osd stat -f json 2024-01-27T23:26:23.118 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:22 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:20.188040+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-01-27T23:26:23.118 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:22 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:20.188102+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-01-27T23:26:23.118 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:22 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:21.857702+0000 mon.smithi073 (mon.0) 424 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:26:23.118 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:22 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:21.857892+0000 mon.smithi073 (mon.0) 425 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:26:23.118 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:22 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:21.858122+0000 mon.smithi073 (mon.0) 426 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:26:23.118 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:22 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:21.860511+0000 mon.smithi073 (mon.0) 427 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:26:23.118 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:22 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:22.222451+0000 mon.smithi073 (mon.0) 428 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:23.119 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:22 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:22.865950+0000 mon.smithi073 (mon.0) 429 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:26:23.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:22 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:20.188040+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-01-27T23:26:23.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:22 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:20.188102+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-01-27T23:26:23.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:22 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:21.857702+0000 mon.smithi073 (mon.0) 424 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:26:23.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:22 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:21.857892+0000 mon.smithi073 (mon.0) 425 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:26:23.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:22 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:21.858122+0000 mon.smithi073 (mon.0) 426 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:26:23.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:22 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:21.860511+0000 mon.smithi073 (mon.0) 427 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:26:23.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:22 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:22.222451+0000 mon.smithi073 (mon.0) 428 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:23.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:22 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:22.865950+0000 mon.smithi073 (mon.0) 429 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:26:23.971 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:23 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:20.980946+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-01-27T23:26:23.972 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:23 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:20.981061+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-01-27T23:26:23.972 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:23 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:22.870831+0000 mon.smithi073 (mon.0) 430 : cluster [INF] osd.4 [v2:172.21.15.186:6816/813067810,v1:172.21.15.186:6817/813067810] boot 2024-01-27T23:26:23.972 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:23 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:22.870881+0000 mon.smithi073 (mon.0) 431 : cluster [DBG] osdmap e24: 8 total, 5 up, 8 in 2024-01-27T23:26:23.972 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:23 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:22.871251+0000 mon.smithi073 (mon.0) 432 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:26:23.972 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:23 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:22.871639+0000 mon.smithi073 (mon.0) 433 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:26:23.972 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:23 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:22.871791+0000 mon.smithi073 (mon.0) 434 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:26:23.973 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:23 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:22.871930+0000 mon.smithi073 (mon.0) 435 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:26:23.973 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:23 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:22.983632+0000 mgr.smithi073.msdoog (mgr.14182) 57 : cluster [DBG] pgmap v51: 1 pgs: 1 unknown; 0 B data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-01-27T23:26:23.973 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:23 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:23.136069+0000 mon.smithi073 (mon.0) 436 : audit [INF] from='osd.5 [v2:172.21.15.73:6818/2868830009,v1:172.21.15.73:6819/2868830009]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-01-27T23:26:23.973 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:23 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:23.530586+0000 mon.smithi186 (mon.1) 16 : audit [INF] from='osd.6 [v2:172.21.15.186:6824/799479968,v1:172.21.15.186:6825/799479968]' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-01-27T23:26:23.973 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:23 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:23.530962+0000 mon.smithi073 (mon.0) 437 : audit [INF] from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-01-27T23:26:23.973 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:23 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:23.872659+0000 mon.smithi073 (mon.0) 438 : audit [INF] from='osd.5 [v2:172.21.15.73:6818/2868830009,v1:172.21.15.73:6819/2868830009]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-01-27T23:26:24.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:23 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:20.980946+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-01-27T23:26:24.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:23 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:20.981061+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-01-27T23:26:24.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:23 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:22.870831+0000 mon.smithi073 (mon.0) 430 : cluster [INF] osd.4 [v2:172.21.15.186:6816/813067810,v1:172.21.15.186:6817/813067810] boot 2024-01-27T23:26:24.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:23 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:22.870881+0000 mon.smithi073 (mon.0) 431 : cluster [DBG] osdmap e24: 8 total, 5 up, 8 in 2024-01-27T23:26:24.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:23 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:22.871251+0000 mon.smithi073 (mon.0) 432 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-01-27T23:26:24.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:23 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:22.871639+0000 mon.smithi073 (mon.0) 433 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:26:24.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:23 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:22.871791+0000 mon.smithi073 (mon.0) 434 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:26:24.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:23 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:22.871930+0000 mon.smithi073 (mon.0) 435 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:26:24.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:23 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:22.983632+0000 mgr.smithi073.msdoog (mgr.14182) 57 : cluster [DBG] pgmap v51: 1 pgs: 1 unknown; 0 B data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-01-27T23:26:24.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:23 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:23.136069+0000 mon.smithi073 (mon.0) 436 : audit [INF] from='osd.5 [v2:172.21.15.73:6818/2868830009,v1:172.21.15.73:6819/2868830009]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-01-27T23:26:24.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:23 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:23.530586+0000 mon.smithi186 (mon.1) 16 : audit [INF] from='osd.6 [v2:172.21.15.186:6824/799479968,v1:172.21.15.186:6825/799479968]' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-01-27T23:26:24.254 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:23 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:23.530962+0000 mon.smithi073 (mon.0) 437 : audit [INF] from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-01-27T23:26:24.254 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:23 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:23.872659+0000 mon.smithi073 (mon.0) 438 : audit [INF] from='osd.5 [v2:172.21.15.73:6818/2868830009,v1:172.21.15.73:6819/2868830009]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-01-27T23:26:24.338 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:26:24.671 INFO:teuthology.orchestra.run.smithi073.stdout:{"epoch":25,"num_osds":8,"num_up_osds":5,"osd_up_since":1706397982,"num_in_osds":8,"osd_in_since":1706397960,"num_remapped_pgs":0} 2024-01-27T23:26:24.911 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:23.872710+0000 mon.smithi073 (mon.0) 439 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-01-27T23:26:24.911 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:23.872770+0000 mon.smithi073 (mon.0) 440 : cluster [DBG] osdmap e25: 8 total, 5 up, 8 in 2024-01-27T23:26:24.911 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:23.872934+0000 mon.smithi073 (mon.0) 441 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:26:24.911 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:23.873469+0000 mon.smithi186 (mon.1) 17 : audit [INF] from='osd.6 [v2:172.21.15.186:6824/799479968,v1:172.21.15.186:6825/799479968]' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi186", "root=default"]}]: dispatch 2024-01-27T23:26:24.911 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:23.873641+0000 mon.smithi073 (mon.0) 442 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:26:24.911 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:23.873960+0000 mon.smithi073 (mon.0) 443 : audit [INF] from='osd.5 [v2:172.21.15.73:6818/2868830009,v1:172.21.15.73:6819/2868830009]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi073", "root=default"]}]: dispatch 2024-01-27T23:26:24.911 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:23.876559+0000 mon.smithi073 (mon.0) 444 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:26:24.911 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:23.876848+0000 mon.smithi073 (mon.0) 445 : audit [INF] from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi186", "root=default"]}]: dispatch 2024-01-27T23:26:24.911 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:24.348850+0000 mon.smithi073 (mon.0) 446 : audit [DBG] from='client.? 172.21.15.73:0/2907258942' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:26:24.912 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:24.438579+0000 mon.smithi073 (mon.0) 447 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:24.912 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:24.873645+0000 mon.smithi073 (mon.0) 448 : audit [INF] from='osd.5 [v2:172.21.15.73:6818/2868830009,v1:172.21.15.73:6819/2868830009]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi073", "root=default"]}]': finished 2024-01-27T23:26:24.912 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:24.873696+0000 mon.smithi073 (mon.0) 449 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi186", "root=default"]}]': finished 2024-01-27T23:26:24.912 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:24.873744+0000 mon.smithi073 (mon.0) 450 : cluster [DBG] osdmap e26: 8 total, 5 up, 8 in 2024-01-27T23:26:24.912 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:24.873892+0000 mon.smithi073 (mon.0) 451 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:26:24.912 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:24.874254+0000 mon.smithi073 (mon.0) 452 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:26:24.912 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:24.874845+0000 mon.smithi073 (mon.0) 453 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:26:25.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:23.872710+0000 mon.smithi073 (mon.0) 439 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-01-27T23:26:25.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:23.872770+0000 mon.smithi073 (mon.0) 440 : cluster [DBG] osdmap e25: 8 total, 5 up, 8 in 2024-01-27T23:26:25.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:23.872934+0000 mon.smithi073 (mon.0) 441 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:26:25.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:23.873469+0000 mon.smithi186 (mon.1) 17 : audit [INF] from='osd.6 [v2:172.21.15.186:6824/799479968,v1:172.21.15.186:6825/799479968]' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi186", "root=default"]}]: dispatch 2024-01-27T23:26:25.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:23.873641+0000 mon.smithi073 (mon.0) 442 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:26:25.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:23.873960+0000 mon.smithi073 (mon.0) 443 : audit [INF] from='osd.5 [v2:172.21.15.73:6818/2868830009,v1:172.21.15.73:6819/2868830009]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi073", "root=default"]}]: dispatch 2024-01-27T23:26:25.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:23.876559+0000 mon.smithi073 (mon.0) 444 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:26:25.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:23.876848+0000 mon.smithi073 (mon.0) 445 : audit [INF] from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi186", "root=default"]}]: dispatch 2024-01-27T23:26:25.254 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:24.348850+0000 mon.smithi073 (mon.0) 446 : audit [DBG] from='client.? 172.21.15.73:0/2907258942' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:26:25.254 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:24.438579+0000 mon.smithi073 (mon.0) 447 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:25.254 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:24.873645+0000 mon.smithi073 (mon.0) 448 : audit [INF] from='osd.5 [v2:172.21.15.73:6818/2868830009,v1:172.21.15.73:6819/2868830009]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi073", "root=default"]}]': finished 2024-01-27T23:26:25.254 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:24.873696+0000 mon.smithi073 (mon.0) 449 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi186", "root=default"]}]': finished 2024-01-27T23:26:25.254 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:24.873744+0000 mon.smithi073 (mon.0) 450 : cluster [DBG] osdmap e26: 8 total, 5 up, 8 in 2024-01-27T23:26:25.254 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:24.873892+0000 mon.smithi073 (mon.0) 451 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:26:25.254 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:24.874254+0000 mon.smithi073 (mon.0) 452 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:26:25.254 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:24.874845+0000 mon.smithi073 (mon.0) 453 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:26:25.672 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph osd stat -f json 2024-01-27T23:26:26.005 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:25 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:24.878325+0000 mon.smithi073 (mon.0) 454 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:26:26.005 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:25 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:24.878555+0000 mon.smithi073 (mon.0) 455 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:26:26.005 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:25 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:24.984057+0000 mgr.smithi073.msdoog (mgr.14182) 58 : cluster [DBG] pgmap v54: 1 pgs: 1 creating+peering; 0 B data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-01-27T23:26:26.005 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:25 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:25.877405+0000 mon.smithi073 (mon.0) 456 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:26:26.005 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:25 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:25.877977+0000 mon.smithi073 (mon.0) 457 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:26:26.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:25 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:24.878325+0000 mon.smithi073 (mon.0) 454 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:26:26.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:25 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:24.878555+0000 mon.smithi073 (mon.0) 455 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:26:26.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:25 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:24.984057+0000 mgr.smithi073.msdoog (mgr.14182) 58 : cluster [DBG] pgmap v54: 1 pgs: 1 creating+peering; 0 B data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-01-27T23:26:26.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:25 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:25.877405+0000 mon.smithi073 (mon.0) 456 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:26:26.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:25 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:25.877977+0000 mon.smithi073 (mon.0) 457 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:26:27.193 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:26 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:24.092008+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-01-27T23:26:27.193 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:26 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:24.092078+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-01-27T23:26:27.193 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:26 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:24.518853+0000 osd.6 (osd.6) 1 : cluster [DBG] purged_snaps scrub starts 2024-01-27T23:26:27.193 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:26 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:24.518938+0000 osd.6 (osd.6) 2 : cluster [DBG] purged_snaps scrub ok 2024-01-27T23:26:27.193 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:26 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:25.888833+0000 mon.smithi073 (mon.0) 458 : cluster [INF] osd.5 [v2:172.21.15.73:6818/2868830009,v1:172.21.15.73:6819/2868830009] boot 2024-01-27T23:26:27.193 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:26 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:25.888859+0000 mon.smithi073 (mon.0) 459 : cluster [INF] osd.6 [v2:172.21.15.186:6824/799479968,v1:172.21.15.186:6825/799479968] boot 2024-01-27T23:26:27.193 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:26 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:25.888883+0000 mon.smithi073 (mon.0) 460 : cluster [DBG] osdmap e27: 8 total, 7 up, 8 in 2024-01-27T23:26:27.194 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:26 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:25.889017+0000 mon.smithi073 (mon.0) 461 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:26:27.194 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:26 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:25.889550+0000 mon.smithi073 (mon.0) 462 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:26:27.194 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:26 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:25.889843+0000 mon.smithi073 (mon.0) 463 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:26:27.194 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:26 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:26.340849+0000 mon.smithi073 (mon.0) 464 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:27.194 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:26 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:26:26.341604+0000 mgr.smithi073.msdoog (mgr.14182) 59 : cephadm [INF] Reconfiguring mon.smithi073 (unknown last config time)... 2024-01-27T23:26:27.194 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:26 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:26.341813+0000 mon.smithi073 (mon.0) 465 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-01-27T23:26:27.194 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:26 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:26.342368+0000 mon.smithi073 (mon.0) 466 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-01-27T23:26:27.194 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:26 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:26.342848+0000 mon.smithi073 (mon.0) 467 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:26:27.194 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:26 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:26:26.343286+0000 mgr.smithi073.msdoog (mgr.14182) 60 : cephadm [INF] Reconfiguring daemon mon.smithi073 on smithi073 2024-01-27T23:26:27.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:26 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:24.092008+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-01-27T23:26:27.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:26 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:24.092078+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-01-27T23:26:27.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:26 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:24.518853+0000 osd.6 (osd.6) 1 : cluster [DBG] purged_snaps scrub starts 2024-01-27T23:26:27.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:26 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:24.518938+0000 osd.6 (osd.6) 2 : cluster [DBG] purged_snaps scrub ok 2024-01-27T23:26:27.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:26 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:25.888833+0000 mon.smithi073 (mon.0) 458 : cluster [INF] osd.5 [v2:172.21.15.73:6818/2868830009,v1:172.21.15.73:6819/2868830009] boot 2024-01-27T23:26:27.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:26 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:25.888859+0000 mon.smithi073 (mon.0) 459 : cluster [INF] osd.6 [v2:172.21.15.186:6824/799479968,v1:172.21.15.186:6825/799479968] boot 2024-01-27T23:26:27.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:26 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:25.888883+0000 mon.smithi073 (mon.0) 460 : cluster [DBG] osdmap e27: 8 total, 7 up, 8 in 2024-01-27T23:26:27.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:26 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:25.889017+0000 mon.smithi073 (mon.0) 461 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-01-27T23:26:27.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:26 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:25.889550+0000 mon.smithi073 (mon.0) 462 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-01-27T23:26:27.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:26 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:25.889843+0000 mon.smithi073 (mon.0) 463 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:26:27.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:26 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:26.340849+0000 mon.smithi073 (mon.0) 464 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:27.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:26 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:26:26.341604+0000 mgr.smithi073.msdoog (mgr.14182) 59 : cephadm [INF] Reconfiguring mon.smithi073 (unknown last config time)... 2024-01-27T23:26:27.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:26 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:26.341813+0000 mon.smithi073 (mon.0) 465 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-01-27T23:26:27.254 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:26 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:26.342368+0000 mon.smithi073 (mon.0) 466 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-01-27T23:26:27.254 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:26 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:26.342848+0000 mon.smithi073 (mon.0) 467 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:26:27.254 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:26 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:26:26.343286+0000 mgr.smithi073.msdoog (mgr.14182) 60 : cephadm [INF] Reconfiguring daemon mon.smithi073 on smithi073 2024-01-27T23:26:27.356 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:26:27.788 INFO:teuthology.orchestra.run.smithi073.stdout:{"epoch":28,"num_osds":8,"num_up_osds":7,"osd_up_since":1706397985,"num_in_osds":8,"osd_in_since":1706397960,"num_remapped_pgs":0} 2024-01-27T23:26:28.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:27 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:26.894716+0000 mon.smithi073 (mon.0) 468 : cluster [DBG] osdmap e28: 8 total, 7 up, 8 in 2024-01-27T23:26:28.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:27 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:26.894854+0000 mon.smithi073 (mon.0) 469 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:26:28.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:27 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:26.984557+0000 mgr.smithi073.msdoog (mgr.14182) 61 : cluster [DBG] pgmap v57: 1 pgs: 1 creating+peering; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-01-27T23:26:28.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:27 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:27.367693+0000 mon.smithi073 (mon.0) 470 : audit [DBG] from='client.? 172.21.15.73:0/2022870309' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:26:28.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:27 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:27.392596+0000 mon.smithi073 (mon.0) 471 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:28.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:27 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:26:27.393276+0000 mgr.smithi073.msdoog (mgr.14182) 62 : cephadm [INF] Reconfiguring mgr.smithi073.msdoog (unknown last config time)... 2024-01-27T23:26:28.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:27 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:27.393513+0000 mon.smithi073 (mon.0) 472 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi073.msdoog", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-01-27T23:26:28.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:27 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:27.394113+0000 mon.smithi073 (mon.0) 473 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "mgr services"}]: dispatch 2024-01-27T23:26:28.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:27 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:27.394577+0000 mon.smithi073 (mon.0) 474 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:26:28.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:27 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:26:27.394989+0000 mgr.smithi073.msdoog (mgr.14182) 63 : cephadm [INF] Reconfiguring daemon mgr.smithi073.msdoog on smithi073 2024-01-27T23:26:28.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:27 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:27.643065+0000 mon.smithi073 (mon.0) 475 : audit [INF] from='osd.7 [v2:172.21.15.73:6826/4127803934,v1:172.21.15.73:6827/4127803934]' entity='osd.7' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]: dispatch 2024-01-27T23:26:28.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:27 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:26.894716+0000 mon.smithi073 (mon.0) 468 : cluster [DBG] osdmap e28: 8 total, 7 up, 8 in 2024-01-27T23:26:28.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:27 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:26.894854+0000 mon.smithi073 (mon.0) 469 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:26:28.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:27 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:26.984557+0000 mgr.smithi073.msdoog (mgr.14182) 61 : cluster [DBG] pgmap v57: 1 pgs: 1 creating+peering; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-01-27T23:26:28.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:27 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:27.367693+0000 mon.smithi073 (mon.0) 470 : audit [DBG] from='client.? 172.21.15.73:0/2022870309' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:26:28.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:27 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:27.392596+0000 mon.smithi073 (mon.0) 471 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:28.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:27 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:26:27.393276+0000 mgr.smithi073.msdoog (mgr.14182) 62 : cephadm [INF] Reconfiguring mgr.smithi073.msdoog (unknown last config time)... 2024-01-27T23:26:28.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:27 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:27.393513+0000 mon.smithi073 (mon.0) 472 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi073.msdoog", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-01-27T23:26:28.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:27 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:27.394113+0000 mon.smithi073 (mon.0) 473 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "mgr services"}]: dispatch 2024-01-27T23:26:28.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:27 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:27.394577+0000 mon.smithi073 (mon.0) 474 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:26:28.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:27 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:26:27.394989+0000 mgr.smithi073.msdoog (mgr.14182) 63 : cephadm [INF] Reconfiguring daemon mgr.smithi073.msdoog on smithi073 2024-01-27T23:26:28.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:27 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:27.643065+0000 mon.smithi073 (mon.0) 475 : audit [INF] from='osd.7 [v2:172.21.15.73:6826/4127803934,v1:172.21.15.73:6827/4127803934]' entity='osd.7' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]: dispatch 2024-01-27T23:26:28.789 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph osd stat -f json 2024-01-27T23:26:29.620 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:29 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:28.339339+0000 mon.smithi073 (mon.0) 476 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:29.620 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:29 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:26:28.340058+0000 mgr.smithi073.msdoog (mgr.14182) 64 : cephadm [INF] Reconfiguring alertmanager.smithi073 (dependencies changed)... 2024-01-27T23:26:29.620 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:29 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:26:28.346343+0000 mgr.smithi073.msdoog (mgr.14182) 65 : cephadm [INF] Reconfiguring daemon alertmanager.smithi073 on smithi073 2024-01-27T23:26:29.620 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:29 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:28.393821+0000 mon.smithi073 (mon.0) 477 : audit [INF] from='osd.7 [v2:172.21.15.73:6826/4127803934,v1:172.21.15.73:6827/4127803934]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-01-27T23:26:29.621 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:29 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:28.393883+0000 mon.smithi073 (mon.0) 478 : cluster [DBG] osdmap e29: 8 total, 7 up, 8 in 2024-01-27T23:26:29.621 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:29 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:28.394002+0000 mon.smithi073 (mon.0) 479 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:26:29.621 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:29 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:28.394300+0000 mon.smithi073 (mon.0) 480 : audit [INF] from='osd.7 [v2:172.21.15.73:6826/4127803934,v1:172.21.15.73:6827/4127803934]' entity='osd.7' cmd=[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi073", "root=default"]}]: dispatch 2024-01-27T23:26:29.752 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:28.339339+0000 mon.smithi073 (mon.0) 476 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:29.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:26:28.340058+0000 mgr.smithi073.msdoog (mgr.14182) 64 : cephadm [INF] Reconfiguring alertmanager.smithi073 (dependencies changed)... 2024-01-27T23:26:29.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:26:28.346343+0000 mgr.smithi073.msdoog (mgr.14182) 65 : cephadm [INF] Reconfiguring daemon alertmanager.smithi073 on smithi073 2024-01-27T23:26:29.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:28.393821+0000 mon.smithi073 (mon.0) 477 : audit [INF] from='osd.7 [v2:172.21.15.73:6826/4127803934,v1:172.21.15.73:6827/4127803934]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-01-27T23:26:29.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:28.393883+0000 mon.smithi073 (mon.0) 478 : cluster [DBG] osdmap e29: 8 total, 7 up, 8 in 2024-01-27T23:26:29.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:28.394002+0000 mon.smithi073 (mon.0) 479 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:26:29.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:28.394300+0000 mon.smithi073 (mon.0) 480 : audit [INF] from='osd.7 [v2:172.21.15.73:6826/4127803934,v1:172.21.15.73:6827/4127803934]' entity='osd.7' cmd=[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi073", "root=default"]}]: dispatch 2024-01-27T23:26:30.563 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:30 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:28.984941+0000 mgr.smithi073.msdoog (mgr.14182) 66 : cluster [DBG] pgmap v59: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-01-27T23:26:30.563 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:30 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:29.395778+0000 mon.smithi073 (mon.0) 481 : audit [INF] from='osd.7 [v2:172.21.15.73:6826/4127803934,v1:172.21.15.73:6827/4127803934]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi073", "root=default"]}]': finished 2024-01-27T23:26:30.563 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:30 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:29.395852+0000 mon.smithi073 (mon.0) 482 : cluster [DBG] osdmap e30: 8 total, 7 up, 8 in 2024-01-27T23:26:30.563 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:30 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:29.396128+0000 mon.smithi073 (mon.0) 483 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:26:30.563 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:30 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:29.400367+0000 mon.smithi073 (mon.0) 484 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:26:30.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:30 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:28.984941+0000 mgr.smithi073.msdoog (mgr.14182) 66 : cluster [DBG] pgmap v59: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-01-27T23:26:30.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:30 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:29.395778+0000 mon.smithi073 (mon.0) 481 : audit [INF] from='osd.7 [v2:172.21.15.73:6826/4127803934,v1:172.21.15.73:6827/4127803934]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi073", "root=default"]}]': finished 2024-01-27T23:26:30.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:30 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:29.395852+0000 mon.smithi073 (mon.0) 482 : cluster [DBG] osdmap e30: 8 total, 7 up, 8 in 2024-01-27T23:26:30.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:30 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:29.396128+0000 mon.smithi073 (mon.0) 483 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:26:30.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:30 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:29.400367+0000 mon.smithi073 (mon.0) 484 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:26:30.886 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:26:31.369 INFO:teuthology.orchestra.run.smithi073.stdout:{"epoch":31,"num_osds":8,"num_up_osds":8,"osd_up_since":1706397990,"num_in_osds":8,"osd_in_since":1706397960,"num_remapped_pgs":1} 2024-01-27T23:26:31.370 INFO:tasks.cephadm:Setting up client nodes... 2024-01-27T23:26:31.370 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph auth get-or-create client.0 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2024-01-27T23:26:31.726 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:31 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:28.688460+0000 osd.7 (osd.7) 1 : cluster [DBG] purged_snaps scrub starts 2024-01-27T23:26:31.726 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:31 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:28.688522+0000 osd.7 (osd.7) 2 : cluster [DBG] purged_snaps scrub ok 2024-01-27T23:26:31.726 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:31 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:30.401138+0000 mon.smithi073 (mon.0) 485 : cluster [INF] osd.7 [v2:172.21.15.73:6826/4127803934,v1:172.21.15.73:6827/4127803934] boot 2024-01-27T23:26:31.726 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:31 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:30.401182+0000 mon.smithi073 (mon.0) 486 : cluster [DBG] osdmap e31: 8 total, 8 up, 8 in 2024-01-27T23:26:31.727 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:31 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:30.401292+0000 mon.smithi073 (mon.0) 487 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:26:31.727 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:31 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:30.897711+0000 mon.smithi073 (mon.0) 488 : audit [DBG] from='client.? 172.21.15.73:0/2628042236' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:26:31.752 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:31 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:28.688460+0000 osd.7 (osd.7) 1 : cluster [DBG] purged_snaps scrub starts 2024-01-27T23:26:31.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:31 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:28.688522+0000 osd.7 (osd.7) 2 : cluster [DBG] purged_snaps scrub ok 2024-01-27T23:26:31.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:31 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:30.401138+0000 mon.smithi073 (mon.0) 485 : cluster [INF] osd.7 [v2:172.21.15.73:6826/4127803934,v1:172.21.15.73:6827/4127803934] boot 2024-01-27T23:26:31.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:31 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:30.401182+0000 mon.smithi073 (mon.0) 486 : cluster [DBG] osdmap e31: 8 total, 8 up, 8 in 2024-01-27T23:26:31.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:31 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:30.401292+0000 mon.smithi073 (mon.0) 487 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-01-27T23:26:31.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:31 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:30.897711+0000 mon.smithi073 (mon.0) 488 : audit [DBG] from='client.? 172.21.15.73:0/2628042236' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-27T23:26:32.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:32 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:30.985298+0000 mgr.smithi073.msdoog (mgr.14182) 67 : cluster [DBG] pgmap v62: 1 pgs: 1 remapped+peering; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-01-27T23:26:32.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:32 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:31.407469+0000 mon.smithi073 (mon.0) 489 : cluster [DBG] osdmap e32: 8 total, 8 up, 8 in 2024-01-27T23:26:32.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:32 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:31.856750+0000 mon.smithi073 (mon.0) 490 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:32.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:32 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:31.857652+0000 mon.smithi073 (mon.0) 491 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi073", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-01-27T23:26:32.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:32 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:31.858302+0000 mon.smithi073 (mon.0) 492 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:26:32.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:32 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:30.985298+0000 mgr.smithi073.msdoog (mgr.14182) 67 : cluster [DBG] pgmap v62: 1 pgs: 1 remapped+peering; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-01-27T23:26:32.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:32 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:31.407469+0000 mon.smithi073 (mon.0) 489 : cluster [DBG] osdmap e32: 8 total, 8 up, 8 in 2024-01-27T23:26:32.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:32 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:31.856750+0000 mon.smithi073 (mon.0) 490 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:32.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:32 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:31.857652+0000 mon.smithi073 (mon.0) 491 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi073", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-01-27T23:26:32.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:32 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:31.858302+0000 mon.smithi073 (mon.0) 492 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:26:32.902 INFO:teuthology.orchestra.run.smithi073.stdout:[client.0] 2024-01-27T23:26:32.903 INFO:teuthology.orchestra.run.smithi073.stdout: key = AQAokbVlDeRTNhAA2D5O03Le2vbM+h2XHfZZUw== 2024-01-27T23:26:33.302 DEBUG:teuthology.orchestra.run.smithi073:> set -ex 2024-01-27T23:26:33.302 DEBUG:teuthology.orchestra.run.smithi073:> sudo dd of=/etc/ceph/ceph.client.0.keyring 2024-01-27T23:26:33.302 DEBUG:teuthology.orchestra.run.smithi073:> sudo chmod 0644 /etc/ceph/ceph.client.0.keyring 2024-01-27T23:26:33.343 DEBUG:teuthology.orchestra.run.smithi186:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph auth get-or-create client.1 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2024-01-27T23:26:33.701 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:33 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:26:31.857404+0000 mgr.smithi073.msdoog (mgr.14182) 68 : cephadm [INF] Reconfiguring crash.smithi073 (monmap changed)... 2024-01-27T23:26:33.701 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:33 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:26:31.858835+0000 mgr.smithi073.msdoog (mgr.14182) 69 : cephadm [INF] Reconfiguring daemon crash.smithi073 on smithi073 2024-01-27T23:26:33.701 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:33 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:32.411642+0000 mon.smithi073 (mon.0) 493 : cluster [DBG] osdmap e33: 8 total, 8 up, 8 in 2024-01-27T23:26:33.701 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:33 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:32.911320+0000 mon.smithi073 (mon.0) 494 : audit [INF] from='client.? 172.21.15.73:0/3611763100' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-01-27T23:26:33.702 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:33 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:32.914832+0000 mon.smithi073 (mon.0) 495 : audit [INF] from='client.? 172.21.15.73:0/3611763100' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-01-27T23:26:33.702 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:33 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:33.020487+0000 mon.smithi073 (mon.0) 496 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:33.716 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:33 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:26:31.857404+0000 mgr.smithi073.msdoog (mgr.14182) 68 : cephadm [INF] Reconfiguring crash.smithi073 (monmap changed)... 2024-01-27T23:26:33.716 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:33 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:26:31.858835+0000 mgr.smithi073.msdoog (mgr.14182) 69 : cephadm [INF] Reconfiguring daemon crash.smithi073 on smithi073 2024-01-27T23:26:33.716 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:33 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:32.411642+0000 mon.smithi073 (mon.0) 493 : cluster [DBG] osdmap e33: 8 total, 8 up, 8 in 2024-01-27T23:26:33.716 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:33 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:32.911320+0000 mon.smithi073 (mon.0) 494 : audit [INF] from='client.? 172.21.15.73:0/3611763100' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-01-27T23:26:33.716 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:33 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:32.914832+0000 mon.smithi073 (mon.0) 495 : audit [INF] from='client.? 172.21.15.73:0/3611763100' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-01-27T23:26:33.717 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:33 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:33.020487+0000 mon.smithi073 (mon.0) 496 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:34.620 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:34 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:32.985637+0000 mgr.smithi073.msdoog (mgr.14182) 70 : cluster [DBG] pgmap v65: 1 pgs: 1 remapped+peering; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:26:34.620 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:34 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:26:33.021102+0000 mgr.smithi073.msdoog (mgr.14182) 71 : cephadm [INF] Reconfiguring grafana.smithi073 (dependencies changed)... 2024-01-27T23:26:34.620 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:34 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:26:33.051662+0000 mgr.smithi073.msdoog (mgr.14182) 72 : cephadm [INF] Reconfiguring daemon grafana.smithi073 on smithi073 2024-01-27T23:26:34.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:34 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:32.985637+0000 mgr.smithi073.msdoog (mgr.14182) 70 : cluster [DBG] pgmap v65: 1 pgs: 1 remapped+peering; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:26:34.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:34 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:26:33.021102+0000 mgr.smithi073.msdoog (mgr.14182) 71 : cephadm [INF] Reconfiguring grafana.smithi073 (dependencies changed)... 2024-01-27T23:26:34.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:34 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:26:33.051662+0000 mgr.smithi073.msdoog (mgr.14182) 72 : cephadm [INF] Reconfiguring daemon grafana.smithi073 on smithi073 2024-01-27T23:26:34.832 INFO:teuthology.orchestra.run.smithi186.stdout:[client.1] 2024-01-27T23:26:34.832 INFO:teuthology.orchestra.run.smithi186.stdout: key = AQAqkbVlmH0eMhAAH1yE8zRM8e7GtNKcH2Pw7w== 2024-01-27T23:26:35.221 DEBUG:teuthology.orchestra.run.smithi186:> set -ex 2024-01-27T23:26:35.222 DEBUG:teuthology.orchestra.run.smithi186:> sudo dd of=/etc/ceph/ceph.client.1.keyring 2024-01-27T23:26:35.222 DEBUG:teuthology.orchestra.run.smithi186:> sudo chmod 0644 /etc/ceph/ceph.client.1.keyring 2024-01-27T23:26:35.263 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph osd dump --format=json 2024-01-27T23:26:35.502 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:35 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:34.840258+0000 mon.smithi186 (mon.1) 18 : audit [INF] from='client.? 172.21.15.186:0/1753425343' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-01-27T23:26:35.503 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:35 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:34.840626+0000 mon.smithi073 (mon.0) 497 : 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 2024-01-27T23:26:35.503 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:35 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:34.844116+0000 mon.smithi073 (mon.0) 498 : 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 2024-01-27T23:26:35.552 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:35 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:34.840258+0000 mon.smithi186 (mon.1) 18 : audit [INF] from='client.? 172.21.15.186:0/1753425343' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-01-27T23:26:35.552 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:35 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:34.840626+0000 mon.smithi073 (mon.0) 497 : 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 2024-01-27T23:26:35.552 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:35 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:34.844116+0000 mon.smithi073 (mon.0) 498 : 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 2024-01-27T23:26:35.564 INFO:teuthology.orchestra.run.smithi073.stderr:Inferring config /var/lib/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/mon.smithi073/config 2024-01-27T23:26:36.719 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:36 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:34.986001+0000 mgr.smithi073.msdoog (mgr.14182) 73 : cluster [DBG] pgmap v66: 1 pgs: 1 remapped+peering; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:26:36.719 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:36 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:35.915158+0000 mon.smithi073 (mon.0) 499 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:36.752 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:36 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:34.986001+0000 mgr.smithi073.msdoog (mgr.14182) 73 : cluster [DBG] pgmap v66: 1 pgs: 1 remapped+peering; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:26:36.752 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:36 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:35.915158+0000 mon.smithi073 (mon.0) 499 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:37.512 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:37 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:26:35.916095+0000 mgr.smithi073.msdoog (mgr.14182) 74 : cephadm [INF] Reconfiguring prometheus.smithi073 (dependencies changed)... 2024-01-27T23:26:37.512 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:37 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:26:35.919462+0000 mgr.smithi073.msdoog (mgr.14182) 75 : cephadm [INF] Reconfiguring daemon prometheus.smithi073 on smithi073 2024-01-27T23:26:37.552 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:26:37.552 INFO:teuthology.orchestra.run.smithi073.stdout:{"epoch":33,"fsid":"0959bd62-bd6b-11ee-95b2-87774f69a715","created":"2024-01-27T23:23:40.920289+0000","modified":"2024-01-27T23:26:32.404678+0000","last_up_change":"2024-01-27T23:26:30.397938+0000","last_in_change":"2024-01-27T23:26:00.839115+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":14,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":8,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"pacific","pools":[{"pool":1,"pool_name":"device_health_metrics","create_time":"2024-01-27T23:26:19.113059+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":"26","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":"305a98f5-98c8-4f68-a35e-e6f94f2360f0","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":31,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.186:6800","nonce":3439896446},{"type":"v1","addr":"172.21.15.186:6801","nonce":3439896446}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.186:6802","nonce":3439896446},{"type":"v1","addr":"172.21.15.186:6803","nonce":3439896446}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.186:6806","nonce":3439896446},{"type":"v1","addr":"172.21.15.186:6807","nonce":3439896446}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.186:6804","nonce":3439896446},{"type":"v1","addr":"172.21.15.186:6805","nonce":3439896446}]},"public_addr":"172.21.15.186:6801/3439896446","cluster_addr":"172.21.15.186:6803/3439896446","heartbeat_back_addr":"172.21.15.186:6807/3439896446","heartbeat_front_addr":"172.21.15.186:6805/3439896446","state":["exists","up"]},{"osd":1,"uuid":"5f919e00-6d9b-4612-82c2-842f1624c5ba","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":19,"up_thru":24,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:6802","nonce":556786561},{"type":"v1","addr":"172.21.15.73:6803","nonce":556786561}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:6804","nonce":556786561},{"type":"v1","addr":"172.21.15.73:6805","nonce":556786561}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:6808","nonce":556786561},{"type":"v1","addr":"172.21.15.73:6809","nonce":556786561}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:6806","nonce":556786561},{"type":"v1","addr":"172.21.15.73:6807","nonce":556786561}]},"public_addr":"172.21.15.73:6803/556786561","cluster_addr":"172.21.15.73:6805/556786561","heartbeat_back_addr":"172.21.15.73:6809/556786561","heartbeat_front_addr":"172.21.15.73:6807/556786561","state":["exists","up"]},{"osd":2,"uuid":"95e31694-c50f-4c83-80b7-e75259f5f82b","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.186:6808","nonce":4197408490},{"type":"v1","addr":"172.21.15.186:6809","nonce":4197408490}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.186:6810","nonce":4197408490},{"type":"v1","addr":"172.21.15.186:6811","nonce":4197408490}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.186:6814","nonce":4197408490},{"type":"v1","addr":"172.21.15.186:6815","nonce":4197408490}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.186:6812","nonce":4197408490},{"type":"v1","addr":"172.21.15.186:6813","nonce":4197408490}]},"public_addr":"172.21.15.186:6809/4197408490","cluster_addr":"172.21.15.186:6811/4197408490","heartbeat_back_addr":"172.21.15.186:6815/4197408490","heartbeat_front_addr":"172.21.15.186:6813/4197408490","state":["exists","up"]},{"osd":3,"uuid":"86c40c0b-6895-4d07-ac50-cb2572996557","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":23,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:6810","nonce":4035843720},{"type":"v1","addr":"172.21.15.73:6811","nonce":4035843720}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:6812","nonce":4035843720},{"type":"v1","addr":"172.21.15.73:6813","nonce":4035843720}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:6816","nonce":4035843720},{"type":"v1","addr":"172.21.15.73:6817","nonce":4035843720}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:6814","nonce":4035843720},{"type":"v1","addr":"172.21.15.73:6815","nonce":4035843720}]},"public_addr":"172.21.15.73:6811/4035843720","cluster_addr":"172.21.15.73:6813/4035843720","heartbeat_back_addr":"172.21.15.73:6817/4035843720","heartbeat_front_addr":"172.21.15.73:6815/4035843720","state":["exists","up"]},{"osd":4,"uuid":"b9413f80-7758-4678-b787-8b44ea2ed9fa","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.186:6816","nonce":813067810},{"type":"v1","addr":"172.21.15.186:6817","nonce":813067810}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.186:6818","nonce":813067810},{"type":"v1","addr":"172.21.15.186:6819","nonce":813067810}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.186:6822","nonce":813067810},{"type":"v1","addr":"172.21.15.186:6823","nonce":813067810}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.186:6820","nonce":813067810},{"type":"v1","addr":"172.21.15.186:6821","nonce":813067810}]},"public_addr":"172.21.15.186:6817/813067810","cluster_addr":"172.21.15.186:6819/813067810","heartbeat_back_addr":"172.21.15.186:6823/813067810","heartbeat_front_addr":"172.21.15.186:6821/813067810","state":["exists","up"]},{"osd":5,"uuid":"6bb0029a-3fce-4c2a-ab5d-ee0268a5b28f","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":27,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:6818","nonce":2868830009},{"type":"v1","addr":"172.21.15.73:6819","nonce":2868830009}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:6820","nonce":2868830009},{"type":"v1","addr":"172.21.15.73:6821","nonce":2868830009}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:6824","nonce":2868830009},{"type":"v1","addr":"172.21.15.73:6825","nonce":2868830009}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:6822","nonce":2868830009},{"type":"v1","addr":"172.21.15.73:6823","nonce":2868830009}]},"public_addr":"172.21.15.73:6819/2868830009","cluster_addr":"172.21.15.73:6821/2868830009","heartbeat_back_addr":"172.21.15.73:6825/2868830009","heartbeat_front_addr":"172.21.15.73:6823/2868830009","state":["exists","up"]},{"osd":6,"uuid":"05a20ff1-bfc7-4e5e-b111-94917569f6dc","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":27,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.186:6824","nonce":799479968},{"type":"v1","addr":"172.21.15.186:6825","nonce":799479968}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.186:6826","nonce":799479968},{"type":"v1","addr":"172.21.15.186:6827","nonce":799479968}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.186:6830","nonce":799479968},{"type":"v1","addr":"172.21.15.186:6831","nonce":799479968}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.186:6828","nonce":799479968},{"type":"v1","addr":"172.21.15.186:6829","nonce":799479968}]},"public_addr":"172.21.15.186:6825/799479968","cluster_addr":"172.21.15.186:6827/799479968","heartbeat_back_addr":"172.21.15.186:6831/799479968","heartbeat_front_addr":"172.21.15.186:6829/799479968","state":["exists","up"]},{"osd":7,"uuid":"0739e7dd-e0d9-4aaa-9377-9cb3ddd962ae","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":31,"up_thru":32,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:6826","nonce":4127803934},{"type":"v1","addr":"172.21.15.73:6827","nonce":4127803934}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:6828","nonce":4127803934},{"type":"v1","addr":"172.21.15.73:6829","nonce":4127803934}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:6832","nonce":4127803934},{"type":"v1","addr":"172.21.15.73:6833","nonce":4127803934}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:6830","nonce":4127803934},{"type":"v1","addr":"172.21.15.73:6831","nonce":4127803934}]},"public_addr":"172.21.15.73:6827/4127803934","cluster_addr":"172.21.15.73:6829/4127803934","heartbeat_back_addr":"172.21.15.73:6833/4127803934","heartbeat_front_addr":"172.21.15.73:6831/4127803934","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":"2024-01-27T23:26:13.248049+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":"2024-01-27T23:26:16.046161+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":"2024-01-27T23:26:16.895823+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":"2024-01-27T23:26:20.188105+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":"2024-01-27T23:26:20.981063+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":"2024-01-27T23:26:24.092082+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":"2024-01-27T23:26:24.518943+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":"2024-01-27T23:26:28.688526+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.73:6800/4203915657":"2024-01-28T23:25:06.968692+0000","172.21.15.73:6801/4203915657":"2024-01-28T23:25:06.968692+0000","172.21.15.73:0/2118395787":"2024-01-28T23:24:29.106665+0000","172.21.15.73:6801/3291928450":"2024-01-28T23:24:29.106665+0000","172.21.15.73:6800/3291928450":"2024-01-28T23:24:29.106665+0000","172.21.15.73:0/179543379":"2024-01-28T23:24:29.106665+0000","172.21.15.73:0/4159099911":"2024-01-28T23:24:02.749678+0000","172.21.15.73:0/515585710":"2024-01-28T23:25:06.968692+0000","172.21.15.73:6800/1991710870":"2024-01-28T23:24:02.749678+0000","172.21.15.73:6801/1991710870":"2024-01-28T23:24:02.749678+0000","172.21.15.73:0/2924092089":"2024-01-28T23:25:06.968692+0000","172.21.15.73:0/87088330":"2024-01-28T23:24:02.749678+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}} 2024-01-27T23:26:37.752 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:37 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:26:35.916095+0000 mgr.smithi073.msdoog (mgr.14182) 74 : cephadm [INF] Reconfiguring prometheus.smithi073 (dependencies changed)... 2024-01-27T23:26:37.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:37 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:26:35.919462+0000 mgr.smithi073.msdoog (mgr.14182) 75 : cephadm [INF] Reconfiguring daemon prometheus.smithi073 on smithi073 2024-01-27T23:26:38.345 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': 'device_health_metrics', 'create_time': '2024-01-27T23:26:19.113059+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': '26', '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': {}}}] 2024-01-27T23:26:38.345 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph osd pool get device_health_metrics pg_num 2024-01-27T23:26:38.552 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:38 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:36.986512+0000 mgr.smithi073.msdoog (mgr.14182) 76 : cluster [DBG] pgmap v67: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:26:38.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:38 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:37.563675+0000 mon.smithi073 (mon.0) 500 : audit [DBG] from='client.? 172.21.15.73:0/641078662' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-01-27T23:26:38.752 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:38 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:36.986512+0000 mgr.smithi073.msdoog (mgr.14182) 76 : cluster [DBG] pgmap v67: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:26:38.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:38 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:37.563675+0000 mon.smithi073 (mon.0) 500 : audit [DBG] from='client.? 172.21.15.73:0/641078662' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-01-27T23:26:39.013 INFO:teuthology.orchestra.run.smithi073.stderr:Inferring config /var/lib/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/mon.smithi073/config 2024-01-27T23:26:40.327 INFO:teuthology.orchestra.run.smithi073.stdout:pg_num: 1 2024-01-27T23:26:40.502 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:40 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:38.987074+0000 mgr.smithi073.msdoog (mgr.14182) 77 : cluster [DBG] pgmap v68: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:26:40.503 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:40 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:39.879125+0000 mon.smithi073 (mon.0) 501 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:40.503 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:40 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:39.880083+0000 mon.smithi073 (mon.0) 502 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi186", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-01-27T23:26:40.503 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:40 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:39.880739+0000 mon.smithi073 (mon.0) 503 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:26:40.503 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:40 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:40.338808+0000 mon.smithi073 (mon.0) 504 : audit [DBG] from='client.? 172.21.15.73:0/2189867743' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": "device_health_metrics", "var": "pg_num"}]: dispatch 2024-01-27T23:26:40.619 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:40 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:38.987074+0000 mgr.smithi073.msdoog (mgr.14182) 77 : cluster [DBG] pgmap v68: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:26:40.619 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:40 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:39.879125+0000 mon.smithi073 (mon.0) 501 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:40.619 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:40 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:39.880083+0000 mon.smithi073 (mon.0) 502 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi186", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-01-27T23:26:40.619 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:40 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:39.880739+0000 mon.smithi073 (mon.0) 503 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:26:40.619 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:40 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:40.338808+0000 mon.smithi073 (mon.0) 504 : audit [DBG] from='client.? 172.21.15.73:0/2189867743' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": "device_health_metrics", "var": "pg_num"}]: dispatch 2024-01-27T23:26:40.695 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2024-01-27T23:26:40.695 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2024-01-27T23:26:40.695 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph mgr dump --format=json 2024-01-27T23:26:40.963 INFO:teuthology.orchestra.run.smithi073.stderr:Inferring config /var/lib/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/mon.smithi073/config 2024-01-27T23:26:42.023 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:41 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:26:39.879808+0000 mgr.smithi073.msdoog (mgr.14182) 78 : cephadm [INF] Reconfiguring crash.smithi186 (monmap changed)... 2024-01-27T23:26:42.023 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:41 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:26:39.881197+0000 mgr.smithi073.msdoog (mgr.14182) 79 : cephadm [INF] Reconfiguring daemon crash.smithi186 on smithi186 2024-01-27T23:26:42.024 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:41 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:40.775179+0000 mon.smithi073 (mon.0) 505 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:42.024 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:41 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:26:40.775858+0000 mgr.smithi073.msdoog (mgr.14182) 80 : cephadm [INF] Reconfiguring mgr.smithi186.vsupqe (monmap changed)... 2024-01-27T23:26:42.024 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:41 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:40.776169+0000 mon.smithi073 (mon.0) 506 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi186.vsupqe", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-01-27T23:26:42.024 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:41 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:40.776829+0000 mon.smithi073 (mon.0) 507 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "mgr services"}]: dispatch 2024-01-27T23:26:42.024 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:41 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:40.777365+0000 mon.smithi073 (mon.0) 508 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:26:42.024 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:41 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:41.645665+0000 mon.smithi073 (mon.0) 509 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:42.024 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:41 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:41.646587+0000 mon.smithi073 (mon.0) 510 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-01-27T23:26:42.024 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:41 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:41.647225+0000 mon.smithi073 (mon.0) 511 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-01-27T23:26:42.024 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:41 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:41.647771+0000 mon.smithi073 (mon.0) 512 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:26:42.052 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:41 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:26:39.879808+0000 mgr.smithi073.msdoog (mgr.14182) 78 : cephadm [INF] Reconfiguring crash.smithi186 (monmap changed)... 2024-01-27T23:26:42.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:41 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:26:39.881197+0000 mgr.smithi073.msdoog (mgr.14182) 79 : cephadm [INF] Reconfiguring daemon crash.smithi186 on smithi186 2024-01-27T23:26:42.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:41 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:40.775179+0000 mon.smithi073 (mon.0) 505 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:42.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:41 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:26:40.775858+0000 mgr.smithi073.msdoog (mgr.14182) 80 : cephadm [INF] Reconfiguring mgr.smithi186.vsupqe (monmap changed)... 2024-01-27T23:26:42.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:41 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:40.776169+0000 mon.smithi073 (mon.0) 506 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi186.vsupqe", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-01-27T23:26:42.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:41 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:40.776829+0000 mon.smithi073 (mon.0) 507 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "mgr services"}]: dispatch 2024-01-27T23:26:42.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:41 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:40.777365+0000 mon.smithi073 (mon.0) 508 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:26:42.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:41 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:41.645665+0000 mon.smithi073 (mon.0) 509 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:42.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:41 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:41.646587+0000 mon.smithi073 (mon.0) 510 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-01-27T23:26:42.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:41 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:41.647225+0000 mon.smithi073 (mon.0) 511 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-01-27T23:26:42.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:41 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:41.647771+0000 mon.smithi073 (mon.0) 512 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:26:42.163 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:26:42.550 INFO:teuthology.orchestra.run.smithi073.stdout:{"epoch":18,"active_gid":14182,"active_name":"smithi073.msdoog","active_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:6800","nonce":786399878},{"type":"v1","addr":"172.21.15.73:6801","nonce":786399878}]},"active_addr":"172.21.15.73:6801/786399878","active_change":"2024-01-27T23:25:06.968810+0000","active_mgr_features":4540138314316775423,"available":true,"standbys":[{"gid":14202,"name":"smithi186.vsupqe","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.73:8443/","prometheus":"http://172.21.15.73: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.73:0","nonce":2189669958}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"172.21.15.73:0","nonce":2183966501}]}]} 2024-01-27T23:26:42.553 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2024-01-27T23:26:42.553 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2024-01-27T23:26:42.553 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph osd dump --format=json 2024-01-27T23:26:42.833 INFO:teuthology.orchestra.run.smithi073.stderr:Inferring config /var/lib/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/mon.smithi073/config 2024-01-27T23:26:43.023 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:42 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:26:40.777907+0000 mgr.smithi073.msdoog (mgr.14182) 81 : cephadm [INF] Reconfiguring daemon mgr.smithi186.vsupqe on smithi186 2024-01-27T23:26:43.023 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:42 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:40.987392+0000 mgr.smithi073.msdoog (mgr.14182) 82 : cluster [DBG] pgmap v69: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:26:43.023 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:42 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:26:41.646329+0000 mgr.smithi073.msdoog (mgr.14182) 83 : cephadm [INF] Reconfiguring mon.smithi186 (monmap changed)... 2024-01-27T23:26:43.023 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:42 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:26:41.648275+0000 mgr.smithi073.msdoog (mgr.14182) 84 : cephadm [INF] Reconfiguring daemon mon.smithi186 on smithi186 2024-01-27T23:26:43.023 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:42 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:42.169979+0000 mon.smithi073 (mon.0) 513 : audit [DBG] from='client.? 172.21.15.73:0/2441481262' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-01-27T23:26:43.023 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:42 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:42.540252+0000 mon.smithi073 (mon.0) 514 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:43.024 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:42 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:42.543118+0000 mon.smithi073 (mon.0) 515 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-01-27T23:26:43.024 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:42 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:42.543511+0000 mgr.smithi073.msdoog (mgr.14182) 85 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-01-27T23:26:43.024 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:42 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:42.544390+0000 mon.smithi073 (mon.0) 516 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi073:9093"}]: dispatch 2024-01-27T23:26:43.024 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:42 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:42.544650+0000 mgr.smithi073.msdoog (mgr.14182) 86 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi073:9093"}]: dispatch 2024-01-27T23:26:43.024 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:42 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:42.550847+0000 mon.smithi073 (mon.0) 517 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:43.024 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:42 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:42.555940+0000 mon.smithi073 (mon.0) 518 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-01-27T23:26:43.024 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:42 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:42.556367+0000 mgr.smithi073.msdoog (mgr.14182) 87 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-01-27T23:26:43.024 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:42 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:42.560428+0000 mon.smithi073 (mon.0) 519 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi073:3000"}]: dispatch 2024-01-27T23:26:43.024 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:42 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:42.560784+0000 mgr.smithi073.msdoog (mgr.14182) 88 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi073:3000"}]: dispatch 2024-01-27T23:26:43.024 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:42 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:42.564574+0000 mon.smithi073 (mon.0) 520 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:43.024 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:42 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:42.568686+0000 mon.smithi073 (mon.0) 521 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-01-27T23:26:43.024 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:42 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:42.569053+0000 mgr.smithi073.msdoog (mgr.14182) 89 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-01-27T23:26:43.024 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:42 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:42.572956+0000 mon.smithi073 (mon.0) 522 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi073:9095"}]: dispatch 2024-01-27T23:26:43.025 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:42 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:42.573345+0000 mgr.smithi073.msdoog (mgr.14182) 90 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi073:9095"}]: dispatch 2024-01-27T23:26:43.025 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:42 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:42.579814+0000 mon.smithi073 (mon.0) 523 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:43.025 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:42 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:42.583727+0000 mon.smithi073 (mon.0) 524 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:26:43.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:42 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:26:40.777907+0000 mgr.smithi073.msdoog (mgr.14182) 81 : cephadm [INF] Reconfiguring daemon mgr.smithi186.vsupqe on smithi186 2024-01-27T23:26:43.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:42 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:40.987392+0000 mgr.smithi073.msdoog (mgr.14182) 82 : cluster [DBG] pgmap v69: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:26:43.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:42 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:26:41.646329+0000 mgr.smithi073.msdoog (mgr.14182) 83 : cephadm [INF] Reconfiguring mon.smithi186 (monmap changed)... 2024-01-27T23:26:43.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:42 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:26:41.648275+0000 mgr.smithi073.msdoog (mgr.14182) 84 : cephadm [INF] Reconfiguring daemon mon.smithi186 on smithi186 2024-01-27T23:26:43.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:42 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:42.169979+0000 mon.smithi073 (mon.0) 513 : audit [DBG] from='client.? 172.21.15.73:0/2441481262' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-01-27T23:26:43.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:42 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:42.540252+0000 mon.smithi073 (mon.0) 514 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:43.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:42 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:42.543118+0000 mon.smithi073 (mon.0) 515 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-01-27T23:26:43.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:42 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:42.543511+0000 mgr.smithi073.msdoog (mgr.14182) 85 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-01-27T23:26:43.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:42 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:42.544390+0000 mon.smithi073 (mon.0) 516 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi073:9093"}]: dispatch 2024-01-27T23:26:43.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:42 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:42.544650+0000 mgr.smithi073.msdoog (mgr.14182) 86 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi073:9093"}]: dispatch 2024-01-27T23:26:43.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:42 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:42.550847+0000 mon.smithi073 (mon.0) 517 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:43.254 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:42 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:42.555940+0000 mon.smithi073 (mon.0) 518 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-01-27T23:26:43.254 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:42 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:42.556367+0000 mgr.smithi073.msdoog (mgr.14182) 87 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-01-27T23:26:43.254 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:42 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:42.560428+0000 mon.smithi073 (mon.0) 519 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi073:3000"}]: dispatch 2024-01-27T23:26:43.254 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:42 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:42.560784+0000 mgr.smithi073.msdoog (mgr.14182) 88 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi073:3000"}]: dispatch 2024-01-27T23:26:43.254 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:42 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:42.564574+0000 mon.smithi073 (mon.0) 520 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:43.254 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:42 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:42.568686+0000 mon.smithi073 (mon.0) 521 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-01-27T23:26:43.254 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:42 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:42.569053+0000 mgr.smithi073.msdoog (mgr.14182) 89 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-01-27T23:26:43.254 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:42 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:42.572956+0000 mon.smithi073 (mon.0) 522 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi073:9095"}]: dispatch 2024-01-27T23:26:43.254 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:42 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:42.573345+0000 mgr.smithi073.msdoog (mgr.14182) 90 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi073:9095"}]: dispatch 2024-01-27T23:26:43.254 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:42 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:42.579814+0000 mon.smithi073 (mon.0) 523 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:43.254 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:42 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:42.583727+0000 mon.smithi073 (mon.0) 524 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:26:44.052 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:43 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:42.987670+0000 mgr.smithi073.msdoog (mgr.14182) 91 : cluster [DBG] pgmap v70: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:26:44.092 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:26:44.092 INFO:teuthology.orchestra.run.smithi073.stdout:{"epoch":33,"fsid":"0959bd62-bd6b-11ee-95b2-87774f69a715","created":"2024-01-27T23:23:40.920289+0000","modified":"2024-01-27T23:26:32.404678+0000","last_up_change":"2024-01-27T23:26:30.397938+0000","last_in_change":"2024-01-27T23:26:00.839115+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":14,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":8,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"pacific","pools":[{"pool":1,"pool_name":"device_health_metrics","create_time":"2024-01-27T23:26:19.113059+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":"26","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":"305a98f5-98c8-4f68-a35e-e6f94f2360f0","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":31,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.186:6800","nonce":3439896446},{"type":"v1","addr":"172.21.15.186:6801","nonce":3439896446}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.186:6802","nonce":3439896446},{"type":"v1","addr":"172.21.15.186:6803","nonce":3439896446}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.186:6806","nonce":3439896446},{"type":"v1","addr":"172.21.15.186:6807","nonce":3439896446}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.186:6804","nonce":3439896446},{"type":"v1","addr":"172.21.15.186:6805","nonce":3439896446}]},"public_addr":"172.21.15.186:6801/3439896446","cluster_addr":"172.21.15.186:6803/3439896446","heartbeat_back_addr":"172.21.15.186:6807/3439896446","heartbeat_front_addr":"172.21.15.186:6805/3439896446","state":["exists","up"]},{"osd":1,"uuid":"5f919e00-6d9b-4612-82c2-842f1624c5ba","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":19,"up_thru":24,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:6802","nonce":556786561},{"type":"v1","addr":"172.21.15.73:6803","nonce":556786561}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:6804","nonce":556786561},{"type":"v1","addr":"172.21.15.73:6805","nonce":556786561}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:6808","nonce":556786561},{"type":"v1","addr":"172.21.15.73:6809","nonce":556786561}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:6806","nonce":556786561},{"type":"v1","addr":"172.21.15.73:6807","nonce":556786561}]},"public_addr":"172.21.15.73:6803/556786561","cluster_addr":"172.21.15.73:6805/556786561","heartbeat_back_addr":"172.21.15.73:6809/556786561","heartbeat_front_addr":"172.21.15.73:6807/556786561","state":["exists","up"]},{"osd":2,"uuid":"95e31694-c50f-4c83-80b7-e75259f5f82b","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.186:6808","nonce":4197408490},{"type":"v1","addr":"172.21.15.186:6809","nonce":4197408490}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.186:6810","nonce":4197408490},{"type":"v1","addr":"172.21.15.186:6811","nonce":4197408490}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.186:6814","nonce":4197408490},{"type":"v1","addr":"172.21.15.186:6815","nonce":4197408490}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.186:6812","nonce":4197408490},{"type":"v1","addr":"172.21.15.186:6813","nonce":4197408490}]},"public_addr":"172.21.15.186:6809/4197408490","cluster_addr":"172.21.15.186:6811/4197408490","heartbeat_back_addr":"172.21.15.186:6815/4197408490","heartbeat_front_addr":"172.21.15.186:6813/4197408490","state":["exists","up"]},{"osd":3,"uuid":"86c40c0b-6895-4d07-ac50-cb2572996557","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":23,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:6810","nonce":4035843720},{"type":"v1","addr":"172.21.15.73:6811","nonce":4035843720}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:6812","nonce":4035843720},{"type":"v1","addr":"172.21.15.73:6813","nonce":4035843720}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:6816","nonce":4035843720},{"type":"v1","addr":"172.21.15.73:6817","nonce":4035843720}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:6814","nonce":4035843720},{"type":"v1","addr":"172.21.15.73:6815","nonce":4035843720}]},"public_addr":"172.21.15.73:6811/4035843720","cluster_addr":"172.21.15.73:6813/4035843720","heartbeat_back_addr":"172.21.15.73:6817/4035843720","heartbeat_front_addr":"172.21.15.73:6815/4035843720","state":["exists","up"]},{"osd":4,"uuid":"b9413f80-7758-4678-b787-8b44ea2ed9fa","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.186:6816","nonce":813067810},{"type":"v1","addr":"172.21.15.186:6817","nonce":813067810}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.186:6818","nonce":813067810},{"type":"v1","addr":"172.21.15.186:6819","nonce":813067810}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.186:6822","nonce":813067810},{"type":"v1","addr":"172.21.15.186:6823","nonce":813067810}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.186:6820","nonce":813067810},{"type":"v1","addr":"172.21.15.186:6821","nonce":813067810}]},"public_addr":"172.21.15.186:6817/813067810","cluster_addr":"172.21.15.186:6819/813067810","heartbeat_back_addr":"172.21.15.186:6823/813067810","heartbeat_front_addr":"172.21.15.186:6821/813067810","state":["exists","up"]},{"osd":5,"uuid":"6bb0029a-3fce-4c2a-ab5d-ee0268a5b28f","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":27,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:6818","nonce":2868830009},{"type":"v1","addr":"172.21.15.73:6819","nonce":2868830009}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:6820","nonce":2868830009},{"type":"v1","addr":"172.21.15.73:6821","nonce":2868830009}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:6824","nonce":2868830009},{"type":"v1","addr":"172.21.15.73:6825","nonce":2868830009}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:6822","nonce":2868830009},{"type":"v1","addr":"172.21.15.73:6823","nonce":2868830009}]},"public_addr":"172.21.15.73:6819/2868830009","cluster_addr":"172.21.15.73:6821/2868830009","heartbeat_back_addr":"172.21.15.73:6825/2868830009","heartbeat_front_addr":"172.21.15.73:6823/2868830009","state":["exists","up"]},{"osd":6,"uuid":"05a20ff1-bfc7-4e5e-b111-94917569f6dc","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":27,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.186:6824","nonce":799479968},{"type":"v1","addr":"172.21.15.186:6825","nonce":799479968}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.186:6826","nonce":799479968},{"type":"v1","addr":"172.21.15.186:6827","nonce":799479968}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.186:6830","nonce":799479968},{"type":"v1","addr":"172.21.15.186:6831","nonce":799479968}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.186:6828","nonce":799479968},{"type":"v1","addr":"172.21.15.186:6829","nonce":799479968}]},"public_addr":"172.21.15.186:6825/799479968","cluster_addr":"172.21.15.186:6827/799479968","heartbeat_back_addr":"172.21.15.186:6831/799479968","heartbeat_front_addr":"172.21.15.186:6829/799479968","state":["exists","up"]},{"osd":7,"uuid":"0739e7dd-e0d9-4aaa-9377-9cb3ddd962ae","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":31,"up_thru":32,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:6826","nonce":4127803934},{"type":"v1","addr":"172.21.15.73:6827","nonce":4127803934}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:6828","nonce":4127803934},{"type":"v1","addr":"172.21.15.73:6829","nonce":4127803934}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:6832","nonce":4127803934},{"type":"v1","addr":"172.21.15.73:6833","nonce":4127803934}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:6830","nonce":4127803934},{"type":"v1","addr":"172.21.15.73:6831","nonce":4127803934}]},"public_addr":"172.21.15.73:6827/4127803934","cluster_addr":"172.21.15.73:6829/4127803934","heartbeat_back_addr":"172.21.15.73:6833/4127803934","heartbeat_front_addr":"172.21.15.73:6831/4127803934","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":"2024-01-27T23:26:13.248049+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":"2024-01-27T23:26:16.046161+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":"2024-01-27T23:26:16.895823+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":"2024-01-27T23:26:20.188105+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":"2024-01-27T23:26:20.981063+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":"2024-01-27T23:26:24.092082+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":"2024-01-27T23:26:24.518943+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":"2024-01-27T23:26:28.688526+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.73:6800/4203915657":"2024-01-28T23:25:06.968692+0000","172.21.15.73:6801/4203915657":"2024-01-28T23:25:06.968692+0000","172.21.15.73:0/2118395787":"2024-01-28T23:24:29.106665+0000","172.21.15.73:6801/3291928450":"2024-01-28T23:24:29.106665+0000","172.21.15.73:6800/3291928450":"2024-01-28T23:24:29.106665+0000","172.21.15.73:0/179543379":"2024-01-28T23:24:29.106665+0000","172.21.15.73:0/4159099911":"2024-01-28T23:24:02.749678+0000","172.21.15.73:0/515585710":"2024-01-28T23:25:06.968692+0000","172.21.15.73:6800/1991710870":"2024-01-28T23:24:02.749678+0000","172.21.15.73:6801/1991710870":"2024-01-28T23:24:02.749678+0000","172.21.15.73:0/2924092089":"2024-01-28T23:25:06.968692+0000","172.21.15.73:0/87088330":"2024-01-28T23:24:02.749678+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}} 2024-01-27T23:26:44.172 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:43 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:42.987670+0000 mgr.smithi073.msdoog (mgr.14182) 91 : cluster [DBG] pgmap v70: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:26:44.708 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2024-01-27T23:26:44.708 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph osd dump --format=json 2024-01-27T23:26:45.252 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:44 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:43.839413+0000 mon.smithi073 (mon.0) 525 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:45.253 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:44 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:44.103803+0000 mon.smithi073 (mon.0) 526 : audit [DBG] from='client.? 172.21.15.73:0/431420053' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-01-27T23:26:45.302 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:43.839413+0000 mon.smithi073 (mon.0) 525 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:45.302 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:44.103803+0000 mon.smithi073 (mon.0) 526 : audit [DBG] from='client.? 172.21.15.73:0/431420053' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-01-27T23:26:45.317 INFO:teuthology.orchestra.run.smithi073.stderr:Inferring config /var/lib/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/mon.smithi073/config 2024-01-27T23:26:46.034 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:45 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:44.988107+0000 mgr.smithi073.msdoog (mgr.14182) 92 : cluster [DBG] pgmap v71: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:26:46.234 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:45 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:44.988107+0000 mgr.smithi073.msdoog (mgr.14182) 92 : cluster [DBG] pgmap v71: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:26:46.727 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:26:46.727 INFO:teuthology.orchestra.run.smithi073.stdout:{"epoch":33,"fsid":"0959bd62-bd6b-11ee-95b2-87774f69a715","created":"2024-01-27T23:23:40.920289+0000","modified":"2024-01-27T23:26:32.404678+0000","last_up_change":"2024-01-27T23:26:30.397938+0000","last_in_change":"2024-01-27T23:26:00.839115+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":14,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":8,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"pacific","pools":[{"pool":1,"pool_name":"device_health_metrics","create_time":"2024-01-27T23:26:19.113059+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":"26","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":"305a98f5-98c8-4f68-a35e-e6f94f2360f0","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":31,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.186:6800","nonce":3439896446},{"type":"v1","addr":"172.21.15.186:6801","nonce":3439896446}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.186:6802","nonce":3439896446},{"type":"v1","addr":"172.21.15.186:6803","nonce":3439896446}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.186:6806","nonce":3439896446},{"type":"v1","addr":"172.21.15.186:6807","nonce":3439896446}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.186:6804","nonce":3439896446},{"type":"v1","addr":"172.21.15.186:6805","nonce":3439896446}]},"public_addr":"172.21.15.186:6801/3439896446","cluster_addr":"172.21.15.186:6803/3439896446","heartbeat_back_addr":"172.21.15.186:6807/3439896446","heartbeat_front_addr":"172.21.15.186:6805/3439896446","state":["exists","up"]},{"osd":1,"uuid":"5f919e00-6d9b-4612-82c2-842f1624c5ba","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":19,"up_thru":24,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:6802","nonce":556786561},{"type":"v1","addr":"172.21.15.73:6803","nonce":556786561}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:6804","nonce":556786561},{"type":"v1","addr":"172.21.15.73:6805","nonce":556786561}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:6808","nonce":556786561},{"type":"v1","addr":"172.21.15.73:6809","nonce":556786561}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:6806","nonce":556786561},{"type":"v1","addr":"172.21.15.73:6807","nonce":556786561}]},"public_addr":"172.21.15.73:6803/556786561","cluster_addr":"172.21.15.73:6805/556786561","heartbeat_back_addr":"172.21.15.73:6809/556786561","heartbeat_front_addr":"172.21.15.73:6807/556786561","state":["exists","up"]},{"osd":2,"uuid":"95e31694-c50f-4c83-80b7-e75259f5f82b","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.186:6808","nonce":4197408490},{"type":"v1","addr":"172.21.15.186:6809","nonce":4197408490}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.186:6810","nonce":4197408490},{"type":"v1","addr":"172.21.15.186:6811","nonce":4197408490}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.186:6814","nonce":4197408490},{"type":"v1","addr":"172.21.15.186:6815","nonce":4197408490}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.186:6812","nonce":4197408490},{"type":"v1","addr":"172.21.15.186:6813","nonce":4197408490}]},"public_addr":"172.21.15.186:6809/4197408490","cluster_addr":"172.21.15.186:6811/4197408490","heartbeat_back_addr":"172.21.15.186:6815/4197408490","heartbeat_front_addr":"172.21.15.186:6813/4197408490","state":["exists","up"]},{"osd":3,"uuid":"86c40c0b-6895-4d07-ac50-cb2572996557","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":23,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:6810","nonce":4035843720},{"type":"v1","addr":"172.21.15.73:6811","nonce":4035843720}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:6812","nonce":4035843720},{"type":"v1","addr":"172.21.15.73:6813","nonce":4035843720}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:6816","nonce":4035843720},{"type":"v1","addr":"172.21.15.73:6817","nonce":4035843720}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:6814","nonce":4035843720},{"type":"v1","addr":"172.21.15.73:6815","nonce":4035843720}]},"public_addr":"172.21.15.73:6811/4035843720","cluster_addr":"172.21.15.73:6813/4035843720","heartbeat_back_addr":"172.21.15.73:6817/4035843720","heartbeat_front_addr":"172.21.15.73:6815/4035843720","state":["exists","up"]},{"osd":4,"uuid":"b9413f80-7758-4678-b787-8b44ea2ed9fa","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.186:6816","nonce":813067810},{"type":"v1","addr":"172.21.15.186:6817","nonce":813067810}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.186:6818","nonce":813067810},{"type":"v1","addr":"172.21.15.186:6819","nonce":813067810}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.186:6822","nonce":813067810},{"type":"v1","addr":"172.21.15.186:6823","nonce":813067810}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.186:6820","nonce":813067810},{"type":"v1","addr":"172.21.15.186:6821","nonce":813067810}]},"public_addr":"172.21.15.186:6817/813067810","cluster_addr":"172.21.15.186:6819/813067810","heartbeat_back_addr":"172.21.15.186:6823/813067810","heartbeat_front_addr":"172.21.15.186:6821/813067810","state":["exists","up"]},{"osd":5,"uuid":"6bb0029a-3fce-4c2a-ab5d-ee0268a5b28f","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":27,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:6818","nonce":2868830009},{"type":"v1","addr":"172.21.15.73:6819","nonce":2868830009}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:6820","nonce":2868830009},{"type":"v1","addr":"172.21.15.73:6821","nonce":2868830009}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:6824","nonce":2868830009},{"type":"v1","addr":"172.21.15.73:6825","nonce":2868830009}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:6822","nonce":2868830009},{"type":"v1","addr":"172.21.15.73:6823","nonce":2868830009}]},"public_addr":"172.21.15.73:6819/2868830009","cluster_addr":"172.21.15.73:6821/2868830009","heartbeat_back_addr":"172.21.15.73:6825/2868830009","heartbeat_front_addr":"172.21.15.73:6823/2868830009","state":["exists","up"]},{"osd":6,"uuid":"05a20ff1-bfc7-4e5e-b111-94917569f6dc","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":27,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.186:6824","nonce":799479968},{"type":"v1","addr":"172.21.15.186:6825","nonce":799479968}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.186:6826","nonce":799479968},{"type":"v1","addr":"172.21.15.186:6827","nonce":799479968}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.186:6830","nonce":799479968},{"type":"v1","addr":"172.21.15.186:6831","nonce":799479968}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.186:6828","nonce":799479968},{"type":"v1","addr":"172.21.15.186:6829","nonce":799479968}]},"public_addr":"172.21.15.186:6825/799479968","cluster_addr":"172.21.15.186:6827/799479968","heartbeat_back_addr":"172.21.15.186:6831/799479968","heartbeat_front_addr":"172.21.15.186:6829/799479968","state":["exists","up"]},{"osd":7,"uuid":"0739e7dd-e0d9-4aaa-9377-9cb3ddd962ae","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":31,"up_thru":32,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:6826","nonce":4127803934},{"type":"v1","addr":"172.21.15.73:6827","nonce":4127803934}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:6828","nonce":4127803934},{"type":"v1","addr":"172.21.15.73:6829","nonce":4127803934}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:6832","nonce":4127803934},{"type":"v1","addr":"172.21.15.73:6833","nonce":4127803934}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.73:6830","nonce":4127803934},{"type":"v1","addr":"172.21.15.73:6831","nonce":4127803934}]},"public_addr":"172.21.15.73:6827/4127803934","cluster_addr":"172.21.15.73:6829/4127803934","heartbeat_back_addr":"172.21.15.73:6833/4127803934","heartbeat_front_addr":"172.21.15.73:6831/4127803934","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":"2024-01-27T23:26:13.248049+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":"2024-01-27T23:26:16.046161+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":"2024-01-27T23:26:16.895823+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":"2024-01-27T23:26:20.188105+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":"2024-01-27T23:26:20.981063+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":"2024-01-27T23:26:24.092082+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":"2024-01-27T23:26:24.518943+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":"2024-01-27T23:26:28.688526+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.73:6800/4203915657":"2024-01-28T23:25:06.968692+0000","172.21.15.73:6801/4203915657":"2024-01-28T23:25:06.968692+0000","172.21.15.73:0/2118395787":"2024-01-28T23:24:29.106665+0000","172.21.15.73:6801/3291928450":"2024-01-28T23:24:29.106665+0000","172.21.15.73:6800/3291928450":"2024-01-28T23:24:29.106665+0000","172.21.15.73:0/179543379":"2024-01-28T23:24:29.106665+0000","172.21.15.73:0/4159099911":"2024-01-28T23:24:02.749678+0000","172.21.15.73:0/515585710":"2024-01-28T23:25:06.968692+0000","172.21.15.73:6800/1991710870":"2024-01-28T23:24:02.749678+0000","172.21.15.73:6801/1991710870":"2024-01-28T23:24:02.749678+0000","172.21.15.73:0/2924092089":"2024-01-28T23:25:06.968692+0000","172.21.15.73:0/87088330":"2024-01-28T23:24:02.749678+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}} 2024-01-27T23:26:47.519 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:47 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:46.408515+0000 mon.smithi073 (mon.0) 527 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:47.520 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:47 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:26:46.479886+0000 mgr.smithi073.msdoog (mgr.14182) 93 : cephadm [INF] Detected new or changed devices on smithi186 2024-01-27T23:26:47.520 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:47 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:46.484727+0000 mon.smithi073 (mon.0) 528 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:47.520 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:47 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:46.738565+0000 mon.smithi073 (mon.0) 529 : audit [DBG] from='client.? 172.21.15.73:0/664046108' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-01-27T23:26:47.520 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:47 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:46.769565+0000 mon.smithi073 (mon.0) 530 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:26:47.520 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:47 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:46.770248+0000 mon.smithi073 (mon.0) 531 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:26:47.520 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:47 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:46.770811+0000 mon.smithi073 (mon.0) 532 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:26:47.520 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:47 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:46.771344+0000 mon.smithi073 (mon.0) 533 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:26:47.520 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:47 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:26:46.771773+0000 mgr.smithi073.msdoog (mgr.14182) 94 : cephadm [INF] Adjusting osd_memory_target on smithi186 to 3990M 2024-01-27T23:26:47.520 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:47 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:46.776270+0000 mon.smithi073 (mon.0) 534 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:47.521 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph tell osd.0 flush_pg_stats 2024-01-27T23:26:47.752 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:47 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:46.408515+0000 mon.smithi073 (mon.0) 527 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:47.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:47 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:26:46.479886+0000 mgr.smithi073.msdoog (mgr.14182) 93 : cephadm [INF] Detected new or changed devices on smithi186 2024-01-27T23:26:47.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:47 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:46.484727+0000 mon.smithi073 (mon.0) 528 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:47.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:47 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:46.738565+0000 mon.smithi073 (mon.0) 529 : audit [DBG] from='client.? 172.21.15.73:0/664046108' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-01-27T23:26:47.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:47 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:46.769565+0000 mon.smithi073 (mon.0) 530 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:26:47.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:47 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:46.770248+0000 mon.smithi073 (mon.0) 531 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:26:47.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:47 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:46.770811+0000 mon.smithi073 (mon.0) 532 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:26:47.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:47 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:46.771344+0000 mon.smithi073 (mon.0) 533 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:26:47.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:47 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:26:46.771773+0000 mgr.smithi073.msdoog (mgr.14182) 94 : cephadm [INF] Adjusting osd_memory_target on smithi186 to 3990M 2024-01-27T23:26:47.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:47 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:46.776270+0000 mon.smithi073 (mon.0) 534 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:47.803 INFO:teuthology.orchestra.run.smithi073.stderr:Inferring config /var/lib/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/mon.smithi073/config 2024-01-27T23:26:49.031 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:48 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:46.988552+0000 mgr.smithi073.msdoog (mgr.14182) 95 : cluster [DBG] pgmap v72: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:26:49.252 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:48 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:46.988552+0000 mgr.smithi073.msdoog (mgr.14182) 95 : cluster [DBG] pgmap v72: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:26:49.380 INFO:teuthology.orchestra.run.smithi073.stdout:68719476746 2024-01-27T23:26:49.381 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph tell osd.1 flush_pg_stats 2024-01-27T23:26:49.657 INFO:teuthology.orchestra.run.smithi073.stderr:Inferring config /var/lib/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/mon.smithi073/config 2024-01-27T23:26:50.721 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:48.988936+0000 mgr.smithi073.msdoog (mgr.14182) 96 : cluster [DBG] pgmap v73: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:26:50.721 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:26:49.582076+0000 mgr.smithi073.msdoog (mgr.14182) 97 : cephadm [INF] Detected new or changed devices on smithi073 2024-01-27T23:26:50.721 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:49.587940+0000 mon.smithi073 (mon.0) 535 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:50.721 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:49.899573+0000 mon.smithi073 (mon.0) 536 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:50.721 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:49.900560+0000 mon.smithi073 (mon.0) 537 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:26:50.721 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:49.901101+0000 mon.smithi073 (mon.0) 538 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:26:50.721 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:49.901551+0000 mon.smithi073 (mon.0) 539 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:26:50.721 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:49.902027+0000 mon.smithi073 (mon.0) 540 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:26:50.721 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:49.905650+0000 mon.smithi073 (mon.0) 541 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:50.721 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:49.906573+0000 mon.smithi073 (mon.0) 542 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:26:50.721 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:49.907202+0000 mon.smithi073 (mon.0) 543 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:26:50.722 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:49.911053+0000 mon.smithi073 (mon.0) 544 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:50.722 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:49.914899+0000 mon.smithi073 (mon.0) 545 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:26:50.722 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:49.918031+0000 mon.smithi073 (mon.0) 546 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-27T23:26:50.722 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:49.918868+0000 mon.smithi073 (mon.0) 547 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-27T23:26:50.722 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:49.919055+0000 mon.smithi073 (mon.0) 548 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:26:50.722 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:49.919464+0000 mon.smithi073 (mon.0) 549 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:26:50.976 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:48.988936+0000 mgr.smithi073.msdoog (mgr.14182) 96 : cluster [DBG] pgmap v73: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:26:50.976 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:26:49.582076+0000 mgr.smithi073.msdoog (mgr.14182) 97 : cephadm [INF] Detected new or changed devices on smithi073 2024-01-27T23:26:50.976 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:49.587940+0000 mon.smithi073 (mon.0) 535 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:50.976 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:49.899573+0000 mon.smithi073 (mon.0) 536 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:50.976 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:49.900560+0000 mon.smithi073 (mon.0) 537 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:26:50.976 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:49.901101+0000 mon.smithi073 (mon.0) 538 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:26:50.976 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:49.901551+0000 mon.smithi073 (mon.0) 539 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:26:50.976 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:49.902027+0000 mon.smithi073 (mon.0) 540 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:26:50.976 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:49.905650+0000 mon.smithi073 (mon.0) 541 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:50.976 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:49.906573+0000 mon.smithi073 (mon.0) 542 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:26:50.977 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:49.907202+0000 mon.smithi073 (mon.0) 543 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:26:50.977 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:49.911053+0000 mon.smithi073 (mon.0) 544 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:50.977 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:49.914899+0000 mon.smithi073 (mon.0) 545 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:26:50.977 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:49.918031+0000 mon.smithi073 (mon.0) 546 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-27T23:26:50.977 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:49.918868+0000 mon.smithi073 (mon.0) 547 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-27T23:26:50.977 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:49.919055+0000 mon.smithi073 (mon.0) 548 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:26:50.977 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:49.919464+0000 mon.smithi073 (mon.0) 549 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:26:51.175 INFO:teuthology.orchestra.run.smithi073.stdout:81604378634 2024-01-27T23:26:51.175 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph tell osd.2 flush_pg_stats 2024-01-27T23:26:51.462 INFO:teuthology.orchestra.run.smithi073.stderr:Inferring config /var/lib/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/mon.smithi073/config 2024-01-27T23:26:51.938 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:51 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:26:49.902379+0000 mgr.smithi073.msdoog (mgr.14182) 98 : cephadm [INF] Adjusting osd_memory_target on smithi073 to 3222M 2024-01-27T23:26:52.006 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:51 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:26:49.902379+0000 mgr.smithi073.msdoog (mgr.14182) 98 : cephadm [INF] Adjusting osd_memory_target on smithi073 to 3222M 2024-01-27T23:26:52.772 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:52 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:50.989299+0000 mgr.smithi073.msdoog (mgr.14182) 99 : cluster [DBG] pgmap v74: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:26:52.965 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:52 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:50.989299+0000 mgr.smithi073.msdoog (mgr.14182) 99 : cluster [DBG] pgmap v74: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:26:52.996 INFO:teuthology.orchestra.run.smithi073.stdout:85899345929 2024-01-27T23:26:52.996 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph tell osd.3 flush_pg_stats 2024-01-27T23:26:53.277 INFO:teuthology.orchestra.run.smithi073.stderr:Inferring config /var/lib/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/mon.smithi073/config 2024-01-27T23:26:54.724 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:54 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:52.989651+0000 mgr.smithi073.msdoog (mgr.14182) 100 : cluster [DBG] pgmap v75: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:26:54.925 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:54 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:52.989651+0000 mgr.smithi073.msdoog (mgr.14182) 100 : cluster [DBG] pgmap v75: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:26:55.014 INFO:teuthology.orchestra.run.smithi073.stdout:98784247817 2024-01-27T23:26:55.014 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph tell osd.4 flush_pg_stats 2024-01-27T23:26:55.291 INFO:teuthology.orchestra.run.smithi073.stderr:Inferring config /var/lib/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/mon.smithi073/config 2024-01-27T23:26:56.696 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:56 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:54.989949+0000 mgr.smithi073.msdoog (mgr.14182) 101 : cluster [DBG] pgmap v76: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:26:56.696 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:56 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:55.835760+0000 mon.smithi073 (mon.0) 550 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:56.853 INFO:teuthology.orchestra.run.smithi073.stdout:103079215114 2024-01-27T23:26:56.853 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph tell osd.5 flush_pg_stats 2024-01-27T23:26:57.002 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:56 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:54.989949+0000 mgr.smithi073.msdoog (mgr.14182) 101 : cluster [DBG] pgmap v76: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:26:57.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:56 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:55.835760+0000 mon.smithi073 (mon.0) 550 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:57.205 INFO:teuthology.orchestra.run.smithi073.stderr:Inferring config /var/lib/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/mon.smithi073/config 2024-01-27T23:26:58.641 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:58 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:56.990265+0000 mgr.smithi073.msdoog (mgr.14182) 102 : cluster [DBG] pgmap v77: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:26:58.641 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:58 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:58.285808+0000 mon.smithi073 (mon.0) 551 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:58.641 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:26:58 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:58.287713+0000 mon.smithi073 (mon.0) 552 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:26:58.705 INFO:teuthology.orchestra.run.smithi073.stdout:115964117001 2024-01-27T23:26:58.705 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph tell osd.6 flush_pg_stats 2024-01-27T23:26:59.002 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:58 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:56.990265+0000 mgr.smithi073.msdoog (mgr.14182) 102 : cluster [DBG] pgmap v77: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:26:59.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:58 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:58.285808+0000 mon.smithi073 (mon.0) 551 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:26:59.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:26:58 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:58.287713+0000 mon.smithi073 (mon.0) 552 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:26:59.055 INFO:teuthology.orchestra.run.smithi073.stderr:Inferring config /var/lib/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/mon.smithi073/config 2024-01-27T23:27:00.921 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:00 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:26:58.990578+0000 mgr.smithi073.msdoog (mgr.14182) 103 : cluster [DBG] pgmap v78: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:27:00.921 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:00 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:26:59.663181+0000 mon.smithi073 (mon.0) 553 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:27:01.002 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:00 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:26:58.990578+0000 mgr.smithi073.msdoog (mgr.14182) 103 : cluster [DBG] pgmap v78: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:27:01.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:00 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:26:59.663181+0000 mon.smithi073 (mon.0) 553 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:27:01.092 INFO:teuthology.orchestra.run.smithi073.stdout:115964117002 2024-01-27T23:27:01.093 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph tell osd.7 flush_pg_stats 2024-01-27T23:27:01.373 INFO:teuthology.orchestra.run.smithi073.stderr:Inferring config /var/lib/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/mon.smithi073/config 2024-01-27T23:27:02.915 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:02 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:27:00.990879+0000 mgr.smithi073.msdoog (mgr.14182) 104 : cluster [DBG] pgmap v79: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:27:02.915 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:02 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:02.483846+0000 mon.smithi073 (mon.0) 554 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:27:02.915 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:02 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:02.484837+0000 mon.smithi073 (mon.0) 555 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:27:02.916 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:02 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:02.485512+0000 mon.smithi073 (mon.0) 556 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:27:02.916 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:02 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:02.490766+0000 mon.smithi073 (mon.0) 557 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:27:02.916 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:02 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:02.494215+0000 mon.smithi073 (mon.0) 558 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:27:03.001 INFO:teuthology.orchestra.run.smithi073.stdout:133143986185 2024-01-27T23:27:03.001 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph osd last-stat-seq osd.0 2024-01-27T23:27:03.002 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:02 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:27:00.990879+0000 mgr.smithi073.msdoog (mgr.14182) 104 : cluster [DBG] pgmap v79: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:27:03.002 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:02 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:02.483846+0000 mon.smithi073 (mon.0) 554 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:27:03.002 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:02 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:02.484837+0000 mon.smithi073 (mon.0) 555 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:27:03.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:02 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:02.485512+0000 mon.smithi073 (mon.0) 556 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:27:03.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:02 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:02.490766+0000 mon.smithi073 (mon.0) 557 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:27:03.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:02 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:02.494215+0000 mon.smithi073 (mon.0) 558 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:27:03.267 INFO:teuthology.orchestra.run.smithi073.stderr:Inferring config /var/lib/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/mon.smithi073/config 2024-01-27T23:27:04.449 INFO:teuthology.orchestra.run.smithi073.stdout:68719476749 2024-01-27T23:27:04.748 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:04 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:27:02.991195+0000 mgr.smithi073.msdoog (mgr.14182) 105 : cluster [DBG] pgmap v80: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:27:04.749 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:04 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:04.460391+0000 mon.smithi073 (mon.0) 559 : audit [DBG] from='client.? 172.21.15.73:0/35229837' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-01-27T23:27:04.834 INFO:tasks.cephadm.ceph_manager.ceph:need seq 68719476746 got 68719476749 for osd.0 2024-01-27T23:27:04.834 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph osd last-stat-seq osd.1 2024-01-27T23:27:05.002 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:04 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:27:02.991195+0000 mgr.smithi073.msdoog (mgr.14182) 105 : cluster [DBG] pgmap v80: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:27:05.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:04 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:04.460391+0000 mon.smithi073 (mon.0) 559 : audit [DBG] from='client.? 172.21.15.73:0/35229837' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-01-27T23:27:05.106 INFO:teuthology.orchestra.run.smithi073.stderr:Inferring config /var/lib/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/mon.smithi073/config 2024-01-27T23:27:06.192 INFO:teuthology.orchestra.run.smithi073.stdout:81604378637 2024-01-27T23:27:06.616 INFO:tasks.cephadm.ceph_manager.ceph:need seq 81604378634 got 81604378637 for osd.1 2024-01-27T23:27:06.617 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph osd last-stat-seq osd.2 2024-01-27T23:27:06.802 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:06 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:27:04.991523+0000 mgr.smithi073.msdoog (mgr.14182) 106 : cluster [DBG] pgmap v81: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:27:06.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:06 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:06.204203+0000 mon.smithi073 (mon.0) 560 : audit [DBG] from='client.? 172.21.15.73:0/4280996421' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-01-27T23:27:06.882 INFO:teuthology.orchestra.run.smithi073.stderr:Inferring config /var/lib/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/mon.smithi073/config 2024-01-27T23:27:07.002 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:06 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:27:04.991523+0000 mgr.smithi073.msdoog (mgr.14182) 106 : cluster [DBG] pgmap v81: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:27:07.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:06 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:06.204203+0000 mon.smithi073 (mon.0) 560 : audit [DBG] from='client.? 172.21.15.73:0/4280996421' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-01-27T23:27:08.253 INFO:teuthology.orchestra.run.smithi073.stdout:85899345932 2024-01-27T23:27:08.632 INFO:tasks.cephadm.ceph_manager.ceph:need seq 85899345929 got 85899345932 for osd.2 2024-01-27T23:27:08.633 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph osd last-stat-seq osd.3 2024-01-27T23:27:08.899 INFO:teuthology.orchestra.run.smithi073.stderr:Inferring config /var/lib/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/mon.smithi073/config 2024-01-27T23:27:09.000 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:08 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:27:06.991827+0000 mgr.smithi073.msdoog (mgr.14182) 107 : cluster [DBG] pgmap v82: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:27:09.000 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:08 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:08.264777+0000 mon.smithi073 (mon.0) 561 : audit [DBG] from='client.? 172.21.15.73:0/3937399437' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-01-27T23:27:09.002 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:08 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:27:06.991827+0000 mgr.smithi073.msdoog (mgr.14182) 107 : cluster [DBG] pgmap v82: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:27:09.002 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:08 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:08.264777+0000 mon.smithi073 (mon.0) 561 : audit [DBG] from='client.? 172.21.15.73:0/3937399437' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-01-27T23:27:10.001 INFO:teuthology.orchestra.run.smithi073.stdout:98784247820 2024-01-27T23:27:10.390 INFO:tasks.cephadm.ceph_manager.ceph:need seq 98784247817 got 98784247820 for osd.3 2024-01-27T23:27:10.391 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph osd last-stat-seq osd.4 2024-01-27T23:27:10.654 INFO:teuthology.orchestra.run.smithi073.stderr:Inferring config /var/lib/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/mon.smithi073/config 2024-01-27T23:27:10.938 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:10 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:27:08.992133+0000 mgr.smithi073.msdoog (mgr.14182) 108 : cluster [DBG] pgmap v83: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:27:10.939 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:10 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:10.012158+0000 mon.smithi073 (mon.0) 562 : audit [DBG] from='client.? 172.21.15.73:0/1256509572' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-01-27T23:27:11.002 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:10 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:27:08.992133+0000 mgr.smithi073.msdoog (mgr.14182) 108 : cluster [DBG] pgmap v83: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:27:11.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:10 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:10.012158+0000 mon.smithi073 (mon.0) 562 : audit [DBG] from='client.? 172.21.15.73:0/1256509572' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-01-27T23:27:11.778 INFO:teuthology.orchestra.run.smithi073.stdout:103079215117 2024-01-27T23:27:12.165 INFO:tasks.cephadm.ceph_manager.ceph:need seq 103079215114 got 103079215117 for osd.4 2024-01-27T23:27:12.166 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph osd last-stat-seq osd.5 2024-01-27T23:27:12.430 INFO:teuthology.orchestra.run.smithi073.stderr:Inferring config /var/lib/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/mon.smithi073/config 2024-01-27T23:27:12.935 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:12 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:27:10.992442+0000 mgr.smithi073.msdoog (mgr.14182) 109 : cluster [DBG] pgmap v84: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:27:12.935 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:12 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:11.790061+0000 mon.smithi073 (mon.0) 563 : audit [DBG] from='client.? 172.21.15.73:0/4229448435' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-01-27T23:27:13.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:12 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:27:10.992442+0000 mgr.smithi073.msdoog (mgr.14182) 109 : cluster [DBG] pgmap v84: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:27:13.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:12 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:11.790061+0000 mon.smithi073 (mon.0) 563 : audit [DBG] from='client.? 172.21.15.73:0/4229448435' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-01-27T23:27:13.579 INFO:teuthology.orchestra.run.smithi073.stdout:115964117003 2024-01-27T23:27:13.888 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:13 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:13.591484+0000 mon.smithi073 (mon.0) 564 : audit [DBG] from='client.? 172.21.15.73:0/386281323' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-01-27T23:27:13.957 INFO:tasks.cephadm.ceph_manager.ceph:need seq 115964117001 got 115964117003 for osd.5 2024-01-27T23:27:13.957 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph osd last-stat-seq osd.6 2024-01-27T23:27:14.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:13 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:13.591484+0000 mon.smithi073 (mon.0) 564 : audit [DBG] from='client.? 172.21.15.73:0/386281323' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-01-27T23:27:14.222 INFO:teuthology.orchestra.run.smithi073.stderr:Inferring config /var/lib/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/mon.smithi073/config 2024-01-27T23:27:15.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:14 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:27:12.992853+0000 mgr.smithi073.msdoog (mgr.14182) 110 : cluster [DBG] pgmap v85: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:27:15.003 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:14 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:27:12.992853+0000 mgr.smithi073.msdoog (mgr.14182) 110 : cluster [DBG] pgmap v85: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:27:15.365 INFO:teuthology.orchestra.run.smithi073.stdout:115964117005 2024-01-27T23:27:15.740 INFO:tasks.cephadm.ceph_manager.ceph:need seq 115964117002 got 115964117005 for osd.6 2024-01-27T23:27:15.740 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph osd last-stat-seq osd.7 2024-01-27T23:27:16.002 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:15 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:15.376907+0000 mon.smithi073 (mon.0) 565 : audit [DBG] from='client.? 172.21.15.73:0/1063791710' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 6}]: dispatch 2024-01-27T23:27:16.005 INFO:teuthology.orchestra.run.smithi073.stderr:Inferring config /var/lib/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/mon.smithi073/config 2024-01-27T23:27:16.052 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:15 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:15.376907+0000 mon.smithi073 (mon.0) 565 : audit [DBG] from='client.? 172.21.15.73:0/1063791710' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 6}]: dispatch 2024-01-27T23:27:16.793 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:27:14.993194+0000 mgr.smithi073.msdoog (mgr.14182) 111 : cluster [DBG] pgmap v86: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:27:17.002 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:27:14.993194+0000 mgr.smithi073.msdoog (mgr.14182) 111 : cluster [DBG] pgmap v86: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:27:17.128 INFO:teuthology.orchestra.run.smithi073.stdout:133143986187 2024-01-27T23:27:17.506 INFO:tasks.cephadm.ceph_manager.ceph:need seq 133143986185 got 133143986187 for osd.7 2024-01-27T23:27:17.507 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2024-01-27T23:27:17.507 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph pg dump --format=json 2024-01-27T23:27:17.774 INFO:teuthology.orchestra.run.smithi073.stderr:Inferring config /var/lib/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/mon.smithi073/config 2024-01-27T23:27:17.971 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:17 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:17.140768+0000 mon.smithi073 (mon.0) 566 : audit [DBG] from='client.? 172.21.15.73:0/1430054705' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 7}]: dispatch 2024-01-27T23:27:18.002 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:17 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:17.140768+0000 mon.smithi073 (mon.0) 566 : audit [DBG] from='client.? 172.21.15.73:0/1430054705' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 7}]: dispatch 2024-01-27T23:27:18.925 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:27:18.926 INFO:teuthology.orchestra.run.smithi073.stderr:dumped all 2024-01-27T23:27:18.950 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:18 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:27:16.993514+0000 mgr.smithi073.msdoog (mgr.14182) 112 : cluster [DBG] pgmap v87: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:27:19.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:18 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:27:16.993514+0000 mgr.smithi073.msdoog (mgr.14182) 112 : cluster [DBG] pgmap v87: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:27:19.297 INFO:teuthology.orchestra.run.smithi073.stdout:{"pg_ready":true,"pg_map":{"version":87,"stamp":"2024-01-27T23:27:16.993373+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":2379276,"kb_used_data":2508,"kb_used_omap":0,"kb_used_meta":2376704,"kb_avail":747549172,"statfs":{"total":767926730752,"available":765490352128,"internally_reserved":0,"allocated":2568192,"data_stored":991891,"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":33,"state":"active+clean","last_fresh":"2024-01-27T23:26:33.302309+0000","last_change":"2024-01-27T23:26:33.302309+0000","last_active":"2024-01-27T23:26:33.302309+0000","last_peered":"2024-01-27T23:26:33.302309+0000","last_clean":"2024-01-27T23:26:33.302309+0000","last_became_active":"2024-01-27T23:26:33.301935+0000","last_became_peered":"2024-01-27T23:26:33.301935+0000","last_unstale":"2024-01-27T23:26:33.302309+0000","last_undegraded":"2024-01-27T23:26:33.302309+0000","last_fullsized":"2024-01-27T23:26:33.302309+0000","mapping_epoch":32,"log_start":"0'0","ondisk_log_start":"0'0","created":21,"last_epoch_clean":33,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-01-27T23:26:19.848465+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-01-27T23:26:19.848465+0000","last_clean_scrub_stamp":"2024-01-27T23:26:19.848465+0000","log_size":0,"ondisk_log_size":0,"stats_invalid":false,"dirty_stats_invalid":false,"omap_stats_invalid":false,"hitset_stats_invalid":false,"hitset_bytes_stats_invalid":false,"pin_stats_invalid":false,"manifest_stats_invalid":false,"snaptrimq_len":0,"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":0,"num_read_kb":0,"num_write":0,"num_write_kb":0,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":0,"num_bytes_recovered":0,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"up":[7,0,3],"acting":[7,0,3],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":7,"acting_primary":7,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":0,"num_read_kb":0,"num_write":0,"num_write_kb":0,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":0,"num_bytes_recovered":0,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":0,"ondisk_log_size":0,"up":3,"acting":3,"num_store_stats":4}],"osd_stats":[{"osd":7,"up_from":31,"seq":133143986188,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297412,"kb_used_data":316,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443644,"statfs":{"total":95990841344,"available":95686291456,"internally_reserved":0,"allocated":323584,"data_stored":124230,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,3,4,5,6],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Thu 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.51300000000000001}]},{"osd":1,"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.26700000000000002}]},{"osd":2,"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.69699999999999995}]},{"osd":3,"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.29999999999999999}]},{"osd":4,"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.66800000000000004}]},{"osd":5,"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.377}]},{"osd":6,"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.65900000000000003}]}]},{"osd":6,"up_from":27,"seq":115964117006,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297412,"kb_used_data":316,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443644,"statfs":{"total":95990841344,"available":95686291456,"internally_reserved":0,"allocated":323584,"data_stored":124230,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,3,4,5,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Thu 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.59099999999999997}]},{"osd":1,"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.52200000000000002}]},{"osd":2,"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.66000000000000003}]},{"osd":3,"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.64900000000000002}]},{"osd":4,"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.68500000000000005}]},{"osd":5,"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.72199999999999998}]},{"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.77400000000000002}]}]},{"osd":1,"up_from":19,"seq":81604378639,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297408,"kb_used_data":312,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443648,"statfs":{"total":95990841344,"available":95686295552,"internally_reserved":0,"allocated":319488,"data_stored":123915,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Thu 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.46899999999999997}]},{"osd":2,"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.38600000000000001}]},{"osd":3,"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.215}]},{"osd":4,"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.35699999999999998}]},{"osd":5,"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.27800000000000002}]},{"osd":6,"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.41799999999999998}]},{"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.36799999999999999}]}]},{"osd":0,"up_from":16,"seq":68719476752,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297412,"kb_used_data":316,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443644,"statfs":{"total":95990841344,"available":95686291456,"internally_reserved":0,"allocated":323584,"data_stored":124230,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[1,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":1,"last update":"Thu 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.40699999999999997}]},{"osd":2,"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.44}]},{"osd":3,"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.45800000000000002}]},{"osd":4,"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.53500000000000003}]},{"osd":5,"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.58799999999999997}]},{"osd":6,"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.51500000000000001}]},{"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.625}]}]},{"osd":2,"up_from":20,"seq":85899345934,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297412,"kb_used_data":316,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443644,"statfs":{"total":95990841344,"available":95686291456,"internally_reserved":0,"allocated":323584,"data_stored":124230,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Thu 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.35599999999999998}]},{"osd":1,"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.58599999999999997}]},{"osd":3,"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.56799999999999995}]},{"osd":4,"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.45800000000000002}]},{"osd":5,"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.52600000000000002}]},{"osd":6,"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.38800000000000001}]},{"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.54100000000000004}]}]},{"osd":3,"up_from":23,"seq":98784247822,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297404,"kb_used_data":308,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443652,"statfs":{"total":95990841344,"available":95686299648,"internally_reserved":0,"allocated":315392,"data_stored":123226,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Thu 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.49099999999999999}]},{"osd":1,"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.31}]},{"osd":2,"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.54300000000000004}]},{"osd":4,"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.52300000000000002}]},{"osd":5,"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.32500000000000001}]},{"osd":6,"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.56799999999999995}]},{"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.36299999999999999}]}]},{"osd":4,"up_from":24,"seq":103079215118,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297408,"kb_used_data":312,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443648,"statfs":{"total":95990841344,"available":95686295552,"internally_reserved":0,"allocated":319488,"data_stored":123915,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,3,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Thu 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.378}]},{"osd":1,"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.70099999999999996}]},{"osd":2,"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.46800000000000003}]},{"osd":3,"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.63500000000000001}]},{"osd":5,"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.70899999999999996}]},{"osd":6,"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.54800000000000004}]},{"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.66300000000000003}]}]},{"osd":5,"up_from":27,"seq":115964117005,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297408,"kb_used_data":312,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443648,"statfs":{"total":95990841344,"available":95686295552,"internally_reserved":0,"allocated":319488,"data_stored":123915,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,3,4,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Thu 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.54600000000000004}]},{"osd":1,"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.30599999999999999}]},{"osd":2,"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.60399999999999998}]},{"osd":3,"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.28299999999999997}]},{"osd":4,"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.495}]},{"osd":6,"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.57299999999999995}]},{"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.34300000000000003}]}]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":3,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":7,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0}]}} 2024-01-27T23:27:19.298 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph pg dump --format=json 2024-01-27T23:27:19.563 INFO:teuthology.orchestra.run.smithi073.stderr:Inferring config /var/lib/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/mon.smithi073/config 2024-01-27T23:27:20.700 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:27:20.702 INFO:teuthology.orchestra.run.smithi073.stderr:dumped all 2024-01-27T23:27:20.996 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:18.934616+0000 mgr.smithi073.msdoog (mgr.14182) 113 : audit [DBG] from='client.14472 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:27:20.996 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:27:18.993801+0000 mgr.smithi073.msdoog (mgr.14182) 114 : cluster [DBG] pgmap v88: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:27:21.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:18.934616+0000 mgr.smithi073.msdoog (mgr.14182) 113 : audit [DBG] from='client.14472 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:27:21.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:27:18.993801+0000 mgr.smithi073.msdoog (mgr.14182) 114 : cluster [DBG] pgmap v88: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:27:21.089 INFO:teuthology.orchestra.run.smithi073.stdout:{"pg_ready":true,"pg_map":{"version":88,"stamp":"2024-01-27T23:27:18.993651+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":2379276,"kb_used_data":2508,"kb_used_omap":0,"kb_used_meta":2376704,"kb_avail":747549172,"statfs":{"total":767926730752,"available":765490352128,"internally_reserved":0,"allocated":2568192,"data_stored":991891,"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":33,"state":"active+clean","last_fresh":"2024-01-27T23:26:33.302309+0000","last_change":"2024-01-27T23:26:33.302309+0000","last_active":"2024-01-27T23:26:33.302309+0000","last_peered":"2024-01-27T23:26:33.302309+0000","last_clean":"2024-01-27T23:26:33.302309+0000","last_became_active":"2024-01-27T23:26:33.301935+0000","last_became_peered":"2024-01-27T23:26:33.301935+0000","last_unstale":"2024-01-27T23:26:33.302309+0000","last_undegraded":"2024-01-27T23:26:33.302309+0000","last_fullsized":"2024-01-27T23:26:33.302309+0000","mapping_epoch":32,"log_start":"0'0","ondisk_log_start":"0'0","created":21,"last_epoch_clean":33,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-01-27T23:26:19.848465+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-01-27T23:26:19.848465+0000","last_clean_scrub_stamp":"2024-01-27T23:26:19.848465+0000","log_size":0,"ondisk_log_size":0,"stats_invalid":false,"dirty_stats_invalid":false,"omap_stats_invalid":false,"hitset_stats_invalid":false,"hitset_bytes_stats_invalid":false,"pin_stats_invalid":false,"manifest_stats_invalid":false,"snaptrimq_len":0,"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":0,"num_read_kb":0,"num_write":0,"num_write_kb":0,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":0,"num_bytes_recovered":0,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"up":[7,0,3],"acting":[7,0,3],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":7,"acting_primary":7,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":0,"num_read_kb":0,"num_write":0,"num_write_kb":0,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":0,"num_bytes_recovered":0,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":0,"ondisk_log_size":0,"up":3,"acting":3,"num_store_stats":4}],"osd_stats":[{"osd":7,"up_from":31,"seq":133143986188,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297412,"kb_used_data":316,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443644,"statfs":{"total":95990841344,"available":95686291456,"internally_reserved":0,"allocated":323584,"data_stored":124230,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,3,4,5,6],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Thu 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.51300000000000001}]},{"osd":1,"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.26700000000000002}]},{"osd":2,"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.69699999999999995}]},{"osd":3,"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.29999999999999999}]},{"osd":4,"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.66800000000000004}]},{"osd":5,"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.377}]},{"osd":6,"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.65900000000000003}]}]},{"osd":6,"up_from":27,"seq":115964117006,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297412,"kb_used_data":316,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443644,"statfs":{"total":95990841344,"available":95686291456,"internally_reserved":0,"allocated":323584,"data_stored":124230,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,3,4,5,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Thu 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.59099999999999997}]},{"osd":1,"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.52200000000000002}]},{"osd":2,"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.66000000000000003}]},{"osd":3,"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.64900000000000002}]},{"osd":4,"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.68500000000000005}]},{"osd":5,"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.72199999999999998}]},{"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.77400000000000002}]}]},{"osd":1,"up_from":19,"seq":81604378640,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297408,"kb_used_data":312,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443648,"statfs":{"total":95990841344,"available":95686295552,"internally_reserved":0,"allocated":319488,"data_stored":123915,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Thu 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.52000000000000002}]},{"osd":2,"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.51000000000000001}]},{"osd":3,"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.29599999999999999}]},{"osd":4,"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.499}]},{"osd":5,"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.35099999999999998}]},{"osd":6,"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.52600000000000002}]},{"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.40200000000000002}]}]},{"osd":0,"up_from":16,"seq":68719476752,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297412,"kb_used_data":316,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443644,"statfs":{"total":95990841344,"available":95686291456,"internally_reserved":0,"allocated":323584,"data_stored":124230,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[1,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":1,"last update":"Thu 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.40699999999999997}]},{"osd":2,"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.44}]},{"osd":3,"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.45800000000000002}]},{"osd":4,"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.53500000000000003}]},{"osd":5,"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.58799999999999997}]},{"osd":6,"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.51500000000000001}]},{"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.625}]}]},{"osd":2,"up_from":20,"seq":85899345935,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297412,"kb_used_data":316,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443644,"statfs":{"total":95990841344,"available":95686291456,"internally_reserved":0,"allocated":323584,"data_stored":124230,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Thu 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.315}]},{"osd":1,"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.46999999999999997}]},{"osd":3,"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.55400000000000005}]},{"osd":4,"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.497}]},{"osd":5,"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.53400000000000003}]},{"osd":6,"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.45600000000000002}]},{"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.54100000000000004}]}]},{"osd":3,"up_from":23,"seq":98784247822,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297404,"kb_used_data":308,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443652,"statfs":{"total":95990841344,"available":95686299648,"internally_reserved":0,"allocated":315392,"data_stored":123226,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Thu 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.49099999999999999}]},{"osd":1,"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.31}]},{"osd":2,"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.54300000000000004}]},{"osd":4,"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.52300000000000002}]},{"osd":5,"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.32500000000000001}]},{"osd":6,"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.56799999999999995}]},{"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.36299999999999999}]}]},{"osd":4,"up_from":24,"seq":103079215119,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297408,"kb_used_data":312,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443648,"statfs":{"total":95990841344,"available":95686295552,"internally_reserved":0,"allocated":319488,"data_stored":123915,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,3,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Thu 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.30599999999999999}]},{"osd":1,"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.67200000000000004}]},{"osd":2,"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.37}]},{"osd":3,"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.61899999999999999}]},{"osd":5,"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.56100000000000005}]},{"osd":6,"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.41499999999999998}]},{"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.63200000000000001}]}]},{"osd":5,"up_from":27,"seq":115964117005,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297408,"kb_used_data":312,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443648,"statfs":{"total":95990841344,"available":95686295552,"internally_reserved":0,"allocated":319488,"data_stored":123915,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,3,4,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Thu 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.54600000000000004}]},{"osd":1,"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.30599999999999999}]},{"osd":2,"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.60399999999999998}]},{"osd":3,"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.28299999999999997}]},{"osd":4,"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.495}]},{"osd":6,"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.57299999999999995}]},{"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.34300000000000003}]}]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":3,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":7,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0}]}} 2024-01-27T23:27:21.090 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2024-01-27T23:27:21.090 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2024-01-27T23:27:21.091 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2024-01-27T23:27:21.091 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph health --format=json 2024-01-27T23:27:21.356 INFO:teuthology.orchestra.run.smithi073.stderr:Inferring config /var/lib/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/mon.smithi073/config 2024-01-27T23:27:21.801 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:21 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:20.709808+0000 mgr.smithi073.msdoog (mgr.14182) 115 : audit [DBG] from='client.14476 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:27:21.970 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:21 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:20.709808+0000 mgr.smithi073.msdoog (mgr.14182) 115 : audit [DBG] from='client.14476 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:27:22.511 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:27:22.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:22 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:27:20.994099+0000 mgr.smithi073.msdoog (mgr.14182) 116 : cluster [DBG] pgmap v89: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:27:22.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:22 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:22.523450+0000 mon.smithi073 (mon.0) 567 : audit [DBG] from='client.? 172.21.15.73:0/3524541318' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-01-27T23:27:22.898 INFO:teuthology.orchestra.run.smithi073.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2024-01-27T23:27:22.899 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2024-01-27T23:27:22.899 INFO:tasks.cephadm:Setup complete, yielding 2024-01-27T23:27:22.899 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-01-27T23:27:22.909 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi073.front.sepia.ceph.com 2024-01-27T23:27:22.909 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- bash -c 'ceph orch status' 2024-01-27T23:27:23.002 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:22 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:27:20.994099+0000 mgr.smithi073.msdoog (mgr.14182) 116 : cluster [DBG] pgmap v89: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:27:23.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:22 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:22.523450+0000 mon.smithi073 (mon.0) 567 : audit [DBG] from='client.? 172.21.15.73:0/3524541318' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-01-27T23:27:24.209 INFO:teuthology.orchestra.run.smithi073.stdout:Backend: cephadm 2024-01-27T23:27:24.209 INFO:teuthology.orchestra.run.smithi073.stdout:Available: Yes 2024-01-27T23:27:24.209 INFO:teuthology.orchestra.run.smithi073.stdout:Paused: No 2024-01-27T23:27:24.598 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- bash -c 'ceph orch ps' 2024-01-27T23:27:24.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:27:22.994450+0000 mgr.smithi073.msdoog (mgr.14182) 117 : cluster [DBG] pgmap v90: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:27:25.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:27:22.994450+0000 mgr.smithi073.msdoog (mgr.14182) 117 : cluster [DBG] pgmap v90: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:27:25.802 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:25 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:24.220525+0000 mgr.smithi073.msdoog (mgr.14182) 118 : audit [DBG] from='client.14484 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:27:25.928 INFO:teuthology.orchestra.run.smithi073.stdout:NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-01-27T23:27:25.929 INFO:teuthology.orchestra.run.smithi073.stdout:alertmanager.smithi073 smithi073 *:9093,9094 running (54s) 23s ago 2m 14.9M - 0.23.0 ba2b418f427c 9341e52729db 2024-01-27T23:27:25.929 INFO:teuthology.orchestra.run.smithi073.stdout:crash.smithi073 smithi073 running (2m) 23s ago 2m 7272k - 16.2.14-508-ga72a5dac 4f538c03cdfa 77b872453c9f 2024-01-27T23:27:25.929 INFO:teuthology.orchestra.run.smithi073.stdout:crash.smithi186 smithi186 running (2m) 26s ago 2m 7432k - 16.2.14-508-ga72a5dac 4f538c03cdfa d238d5d5d4ee 2024-01-27T23:27:25.929 INFO:teuthology.orchestra.run.smithi073.stdout:grafana.smithi073 smithi073 *:3000 running (50s) 23s ago 2m 48.9M - 8.3.5 dad864ee21e9 4cdd5cde845a 2024-01-27T23:27:25.929 INFO:teuthology.orchestra.run.smithi073.stdout:mgr.smithi073.msdoog smithi073 *:9283 running (3m) 23s ago 3m 447M - 16.2.14-508-ga72a5dac 4f538c03cdfa c00c1420e170 2024-01-27T23:27:25.929 INFO:teuthology.orchestra.run.smithi073.stdout:mgr.smithi186.vsupqe smithi186 *:8443,9283 running (119s) 26s ago 118s 394M - 16.2.14-508-ga72a5dac 4f538c03cdfa 6d318b2ab209 2024-01-27T23:27:25.929 INFO:teuthology.orchestra.run.smithi073.stdout:mon.smithi073 smithi073 running (3m) 23s ago 3m 76.7M 2048M 16.2.14-508-ga72a5dac 4f538c03cdfa ab9d741c9a24 2024-01-27T23:27:25.929 INFO:teuthology.orchestra.run.smithi073.stdout:mon.smithi186 smithi186 running (116s) 26s ago 116s 63.8M 2048M 16.2.14-508-ga72a5dac 4f538c03cdfa 665ccb2ff19d 2024-01-27T23:27:25.929 INFO:teuthology.orchestra.run.smithi073.stdout:node-exporter.smithi073 smithi073 *:9100 running (2m) 23s ago 2m 22.5M - 1.3.1 1dbe0e931976 a5fedc611946 2024-01-27T23:27:25.929 INFO:teuthology.orchestra.run.smithi073.stdout:node-exporter.smithi186 smithi186 *:9100 running (101s) 26s ago 101s 20.5M - 1.3.1 1dbe0e931976 e1c1b4facf98 2024-01-27T23:27:25.929 INFO:teuthology.orchestra.run.smithi073.stdout:osd.0 smithi186 running (77s) 26s ago 76s 34.5M 3990M 16.2.14-508-ga72a5dac 4f538c03cdfa c08a0c22a384 2024-01-27T23:27:25.929 INFO:teuthology.orchestra.run.smithi073.stdout:osd.1 smithi073 running (74s) 23s ago 74s 35.8M 3222M 16.2.14-508-ga72a5dac 4f538c03cdfa 352997ca106c 2024-01-27T23:27:25.929 INFO:teuthology.orchestra.run.smithi073.stdout:osd.2 smithi186 running (73s) 26s ago 73s 30.7M 3990M 16.2.14-508-ga72a5dac 4f538c03cdfa 4bcd074a70e5 2024-01-27T23:27:25.929 INFO:teuthology.orchestra.run.smithi073.stdout:osd.3 smithi073 running (70s) 23s ago 69s 34.0M 3222M 16.2.14-508-ga72a5dac 4f538c03cdfa a796c8b3e59d 2024-01-27T23:27:25.929 INFO:teuthology.orchestra.run.smithi073.stdout:osd.4 smithi186 running (69s) 26s ago 69s 32.3M 3990M 16.2.14-508-ga72a5dac 4f538c03cdfa 3b3a330a66a8 2024-01-27T23:27:25.929 INFO:teuthology.orchestra.run.smithi073.stdout:osd.5 smithi073 running (66s) 23s ago 66s 31.0M 3222M 16.2.14-508-ga72a5dac 4f538c03cdfa 7c2a24579a64 2024-01-27T23:27:25.930 INFO:teuthology.orchestra.run.smithi073.stdout:osd.6 smithi186 running (65s) 26s ago 65s 30.0M 3990M 16.2.14-508-ga72a5dac 4f538c03cdfa d1d44ffb57b6 2024-01-27T23:27:25.930 INFO:teuthology.orchestra.run.smithi073.stdout:osd.7 smithi073 running (61s) 23s ago 61s 31.5M 3222M 16.2.14-508-ga72a5dac 4f538c03cdfa 830bdf5db2e3 2024-01-27T23:27:25.930 INFO:teuthology.orchestra.run.smithi073.stdout:prometheus.smithi073 smithi073 *:9095 running (46s) 23s ago 2m 43.1M - 2.33.4 514e6a882f6e 30a1a22c241c 2024-01-27T23:27:26.002 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:25 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:24.220525+0000 mgr.smithi073.msdoog (mgr.14182) 118 : audit [DBG] from='client.14484 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:27:26.282 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- bash -c 'ceph orch ls' 2024-01-27T23:27:26.951 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:26 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:27:24.994753+0000 mgr.smithi073.msdoog (mgr.14182) 119 : cluster [DBG] pgmap v91: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:27:27.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:26 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:27:24.994753+0000 mgr.smithi073.msdoog (mgr.14182) 119 : cluster [DBG] pgmap v91: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:27:27.557 INFO:teuthology.orchestra.run.smithi073.stdout:NAME PORTS RUNNING REFRESHED AGE PLACEMENT 2024-01-27T23:27:27.557 INFO:teuthology.orchestra.run.smithi073.stdout:alertmanager ?:9093,9094 1/1 25s ago 3m count:1 2024-01-27T23:27:27.557 INFO:teuthology.orchestra.run.smithi073.stdout:crash 2/2 27s ago 3m * 2024-01-27T23:27:27.557 INFO:teuthology.orchestra.run.smithi073.stdout:grafana ?:3000 1/1 25s ago 3m count:1 2024-01-27T23:27:27.557 INFO:teuthology.orchestra.run.smithi073.stdout:mgr 2/2 27s ago 3m count:2 2024-01-27T23:27:27.557 INFO:teuthology.orchestra.run.smithi073.stdout:mon 2/2 27s ago 2m smithi073:172.21.15.73=smithi073;smithi186:172.21.15.186=smithi186;count:2 2024-01-27T23:27:27.557 INFO:teuthology.orchestra.run.smithi073.stdout:node-exporter ?:9100 2/2 27s ago 3m * 2024-01-27T23:27:27.557 INFO:teuthology.orchestra.run.smithi073.stdout:osd.all-available-devices 8 27s ago 102s * 2024-01-27T23:27:27.557 INFO:teuthology.orchestra.run.smithi073.stdout:prometheus ?:9095 1/1 25s ago 3m count:1 2024-01-27T23:27:27.903 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:27 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:25.932423+0000 mgr.smithi073.msdoog (mgr.14182) 120 : audit [DBG] from='client.14488 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:27:27.938 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- bash -c 'ceph orch host ls' 2024-01-27T23:27:28.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:27 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:25.932423+0000 mgr.smithi073.msdoog (mgr.14182) 120 : audit [DBG] from='client.14488 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:27:28.918 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:27:26.995071+0000 mgr.smithi073.msdoog (mgr.14182) 121 : cluster [DBG] pgmap v92: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:27:28.918 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:27.565119+0000 mgr.smithi073.msdoog (mgr.14182) 122 : audit [DBG] from='client.14492 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:27:29.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:27:26.995071+0000 mgr.smithi073.msdoog (mgr.14182) 121 : cluster [DBG] pgmap v92: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:27:29.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:27.565119+0000 mgr.smithi073.msdoog (mgr.14182) 122 : audit [DBG] from='client.14492 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:27:29.267 INFO:teuthology.orchestra.run.smithi073.stdout:HOST ADDR LABELS STATUS 2024-01-27T23:27:29.267 INFO:teuthology.orchestra.run.smithi073.stdout:smithi073 172.21.15.73 2024-01-27T23:27:29.267 INFO:teuthology.orchestra.run.smithi073.stdout:smithi186 172.21.15.186 2024-01-27T23:27:29.267 INFO:teuthology.orchestra.run.smithi073.stdout:2 hosts in cluster 2024-01-27T23:27:29.639 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- bash -c 'ceph orch device ls' 2024-01-27T23:27:30.972 INFO:teuthology.orchestra.run.smithi073.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-01-27T23:27:30.972 INFO:teuthology.orchestra.run.smithi073.stdout:smithi073 /dev/nvme0n1 ssd INTEL SSDPEDMD400G4_PHFT62040115400BGN 372G 41s ago Has a FileSystem, LVM detected 2024-01-27T23:27:30.972 INFO:teuthology.orchestra.run.smithi073.stdout:smithi073 /dev/nvme1n1 ssd Linux_53371f933d6e3b7b5bc5 89.4G 41s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-01-27T23:27:30.972 INFO:teuthology.orchestra.run.smithi073.stdout:smithi073 /dev/nvme2n1 ssd Linux_7ccaf57325b0ad6533fb 89.4G 41s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-01-27T23:27:30.972 INFO:teuthology.orchestra.run.smithi073.stdout:smithi073 /dev/nvme3n1 ssd Linux_c88e9db4bb54bc23773c 89.4G 41s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-01-27T23:27:30.972 INFO:teuthology.orchestra.run.smithi073.stdout:smithi073 /dev/nvme4n1 ssd Linux_b7f96c837fa6367138a8 89.4G 41s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-01-27T23:27:30.972 INFO:teuthology.orchestra.run.smithi073.stdout:smithi186 /dev/nvme0n1 ssd INTEL SSDPEDMD400G4_CVFT623300CB400BGN 372G 44s ago Has a FileSystem, LVM detected 2024-01-27T23:27:30.972 INFO:teuthology.orchestra.run.smithi073.stdout:smithi186 /dev/nvme1n1 ssd Linux_e50a9e97ae1b21ba523a 89.4G 44s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-01-27T23:27:30.972 INFO:teuthology.orchestra.run.smithi073.stdout:smithi186 /dev/nvme2n1 ssd Linux_6244a31c77830344f824 89.4G 44s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-01-27T23:27:30.972 INFO:teuthology.orchestra.run.smithi073.stdout:smithi186 /dev/nvme3n1 ssd Linux_433247904d7a9b49a056 89.4G 44s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-01-27T23:27:30.972 INFO:teuthology.orchestra.run.smithi073.stdout:smithi186 /dev/nvme4n1 ssd Linux_4f5b78abc38b574321c1 89.4G 44s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-01-27T23:27:30.992 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:30 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:27:28.995483+0000 mgr.smithi073.msdoog (mgr.14182) 123 : cluster [DBG] pgmap v93: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:27:30.992 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:30 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:29.278431+0000 mgr.smithi073.msdoog (mgr.14182) 124 : audit [DBG] from='client.14496 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:27:31.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:30 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:27:28.995483+0000 mgr.smithi073.msdoog (mgr.14182) 123 : cluster [DBG] pgmap v93: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:27:31.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:30 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:29.278431+0000 mgr.smithi073.msdoog (mgr.14182) 124 : audit [DBG] from='client.14496 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:27:31.354 INFO:teuthology.run_tasks:Running task vip... 2024-01-27T23:27:31.364 INFO:tasks.vip:Allocating static IPs for each host... 2024-01-27T23:27:31.364 INFO:tasks.vip:peername 172.21.15.73 2024-01-27T23:27:31.367 INFO:tasks.vip:172.21.15.73 in 172.21.0.0/20, pos 3912 2024-01-27T23:27:31.372 INFO:tasks.vip:smithi073.front.sepia.ceph.com static 10.0.15.73, vnet 10.0.0.0/16 2024-01-27T23:27:31.372 INFO:tasks.vip:VIPs are {map(str, vips)} 2024-01-27T23:27:31.372 DEBUG:teuthology.orchestra.run.smithi073:> sudo ip route ls 2024-01-27T23:27:31.401 INFO:teuthology.orchestra.run.smithi073.stdout:default via 172.21.15.254 dev enp3s0f1 proto dhcp metric 100 2024-01-27T23:27:31.402 INFO:teuthology.orchestra.run.smithi073.stdout:172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.73 metric 100 2024-01-27T23:27:31.402 INFO:tasks.vip:Configuring 10.0.15.73 on smithi073.front.sepia.ceph.com iface enp3s0f1... 2024-01-27T23:27:31.403 DEBUG:teuthology.orchestra.run.smithi073:> sudo ip addr add 10.0.15.73/16 dev enp3s0f1 2024-01-27T23:27:31.470 INFO:tasks.vip:peername 172.21.15.186 2024-01-27T23:27:31.473 INFO:tasks.vip:172.21.15.186 in 172.21.0.0/20, pos 4025 2024-01-27T23:27:31.477 INFO:tasks.vip:smithi186.front.sepia.ceph.com static 10.0.15.186, vnet 10.0.0.0/16 2024-01-27T23:27:31.477 DEBUG:teuthology.orchestra.run.smithi186:> sudo ip route ls 2024-01-27T23:27:31.517 INFO:teuthology.orchestra.run.smithi186.stdout:default via 172.21.15.254 dev enp3s0f1 proto dhcp metric 100 2024-01-27T23:27:31.517 INFO:teuthology.orchestra.run.smithi186.stdout:172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.186 metric 100 2024-01-27T23:27:31.518 INFO:tasks.vip:Configuring 10.0.15.186 on smithi186.front.sepia.ceph.com iface enp3s0f1... 2024-01-27T23:27:31.518 DEBUG:teuthology.orchestra.run.smithi186:> sudo ip addr add 10.0.15.186/16 dev enp3s0f1 2024-01-27T23:27:31.591 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-01-27T23:27:31.601 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi073.front.sepia.ceph.com 2024-01-27T23:27:31.601 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- bash -c 'ceph orch device ls --refresh' 2024-01-27T23:27:32.911 INFO:teuthology.orchestra.run.smithi073.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-01-27T23:27:32.911 INFO:teuthology.orchestra.run.smithi073.stdout:smithi073 /dev/nvme0n1 ssd INTEL SSDPEDMD400G4_PHFT62040115400BGN 372G 43s ago Has a FileSystem, LVM detected 2024-01-27T23:27:32.912 INFO:teuthology.orchestra.run.smithi073.stdout:smithi073 /dev/nvme1n1 ssd Linux_53371f933d6e3b7b5bc5 89.4G 43s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-01-27T23:27:32.912 INFO:teuthology.orchestra.run.smithi073.stdout:smithi073 /dev/nvme2n1 ssd Linux_7ccaf57325b0ad6533fb 89.4G 43s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-01-27T23:27:32.912 INFO:teuthology.orchestra.run.smithi073.stdout:smithi073 /dev/nvme3n1 ssd Linux_c88e9db4bb54bc23773c 89.4G 43s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-01-27T23:27:32.912 INFO:teuthology.orchestra.run.smithi073.stdout:smithi073 /dev/nvme4n1 ssd Linux_b7f96c837fa6367138a8 89.4G 43s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-01-27T23:27:32.912 INFO:teuthology.orchestra.run.smithi073.stdout:smithi186 /dev/nvme0n1 ssd INTEL SSDPEDMD400G4_CVFT623300CB400BGN 372G 46s ago Has a FileSystem, LVM detected 2024-01-27T23:27:32.912 INFO:teuthology.orchestra.run.smithi073.stdout:smithi186 /dev/nvme1n1 ssd Linux_e50a9e97ae1b21ba523a 89.4G 46s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-01-27T23:27:32.912 INFO:teuthology.orchestra.run.smithi073.stdout:smithi186 /dev/nvme2n1 ssd Linux_6244a31c77830344f824 89.4G 46s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-01-27T23:27:32.912 INFO:teuthology.orchestra.run.smithi073.stdout:smithi186 /dev/nvme3n1 ssd Linux_433247904d7a9b49a056 89.4G 46s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-01-27T23:27:32.912 INFO:teuthology.orchestra.run.smithi073.stdout:smithi186 /dev/nvme4n1 ssd Linux_4f5b78abc38b574321c1 89.4G 46s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-01-27T23:27:32.931 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:32 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:30.981145+0000 mgr.smithi073.msdoog (mgr.14182) 125 : audit [DBG] from='client.14500 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:27:32.932 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:32 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:27:30.995850+0000 mgr.smithi073.msdoog (mgr.14182) 126 : cluster [DBG] pgmap v94: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:27:33.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:32 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:30.981145+0000 mgr.smithi073.msdoog (mgr.14182) 125 : audit [DBG] from='client.14500 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:27:33.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:32 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:27:30.995850+0000 mgr.smithi073.msdoog (mgr.14182) 126 : cluster [DBG] pgmap v94: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:27:33.351 INFO:teuthology.run_tasks:Running task vip.exec... 2024-01-27T23:27:33.361 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi073.front.sepia.ceph.com 2024-01-27T23:27:33.361 DEBUG:teuthology.orchestra.run.smithi073:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2024-01-27T23:27:33.391 INFO:teuthology.orchestra.run.smithi073.stderr:+ systemctl stop nfs-server 2024-01-27T23:27:33.399 INFO:tasks.vip:Running commands on role host.b host ubuntu@smithi186.front.sepia.ceph.com 2024-01-27T23:27:33.399 DEBUG:teuthology.orchestra.run.smithi186:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2024-01-27T23:27:33.425 INFO:teuthology.orchestra.run.smithi186.stderr:+ systemctl stop nfs-server 2024-01-27T23:27:33.432 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-01-27T23:27:33.464 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi073.front.sepia.ceph.com 2024-01-27T23:27:33.464 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- bash -c 'ceph orch apply rgw foorgw --port 8800' 2024-01-27T23:27:33.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:33 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:32.969851+0000 mon.smithi073 (mon.0) 568 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:27:34.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:33 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:32.969851+0000 mon.smithi073 (mon.0) 568 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:27:34.785 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:34 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:32.920600+0000 mgr.smithi073.msdoog (mgr.14182) 127 : audit [DBG] from='client.14504 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:27:34.785 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:34 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:27:32.996158+0000 mgr.smithi073.msdoog (mgr.14182) 128 : cluster [DBG] pgmap v95: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:27:34.785 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:34 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:34.370712+0000 mon.smithi073 (mon.0) 569 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:27:35.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:34 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:32.920600+0000 mgr.smithi073.msdoog (mgr.14182) 127 : audit [DBG] from='client.14504 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:27:35.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:34 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:27:32.996158+0000 mgr.smithi073.msdoog (mgr.14182) 128 : cluster [DBG] pgmap v95: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:27:35.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:34 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:34.370712+0000 mon.smithi073 (mon.0) 569 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:27:35.297 INFO:teuthology.orchestra.run.smithi073.stdout:Scheduled rgw.foorgw update... 2024-01-27T23:27:35.808 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- bash -c 'ceph nfs cluster create foo --ingress --virtual-ip 10.0.31.73/16' 2024-01-27T23:27:36.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:36 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:27:34.996435+0000 mgr.smithi073.msdoog (mgr.14182) 129 : cluster [DBG] pgmap v96: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:27:36.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:36 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:35.303988+0000 mgr.smithi073.msdoog (mgr.14182) 130 : audit [DBG] from='client.14508 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:27:36.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:36 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:27:35.305013+0000 mgr.smithi073.msdoog (mgr.14182) 131 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-01-27T23:27:36.553 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:36 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:35.308014+0000 mon.smithi073 (mon.0) 570 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:27:36.698 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:36 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:27:34.996435+0000 mgr.smithi073.msdoog (mgr.14182) 129 : cluster [DBG] pgmap v96: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:27:36.698 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:36 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:35.303988+0000 mgr.smithi073.msdoog (mgr.14182) 130 : audit [DBG] from='client.14508 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:27:36.698 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:36 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:27:35.305013+0000 mgr.smithi073.msdoog (mgr.14182) 131 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-01-27T23:27:36.698 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:36 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:35.308014+0000 mon.smithi073 (mon.0) 570 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:27:37.535 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:37 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:36.340908+0000 mon.smithi073 (mon.0) 571 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:27:37.535 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:37 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:36.983180+0000 mon.smithi073 (mon.0) 572 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:27:37.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:37 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:36.340908+0000 mon.smithi073 (mon.0) 571 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:27:37.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:37 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:36.983180+0000 mon.smithi073 (mon.0) 572 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:27:38.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:38 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:27:36.996976+0000 mgr.smithi073.msdoog (mgr.14182) 132 : cluster [DBG] pgmap v97: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:27:38.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:38 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:37.452083+0000 mgr.smithi073.msdoog (mgr.14182) 133 : audit [DBG] from='client.14512 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.73/16", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:27:38.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:38 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:37.453360+0000 mon.smithi073 (mon.0) 573 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd pool create", "pool": ".nfs"}]: dispatch 2024-01-27T23:27:38.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:38 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:27:36.996976+0000 mgr.smithi073.msdoog (mgr.14182) 132 : cluster [DBG] pgmap v97: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:27:38.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:38 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:37.452083+0000 mgr.smithi073.msdoog (mgr.14182) 133 : audit [DBG] from='client.14512 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.73/16", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:27:38.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:38 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:37.453360+0000 mon.smithi073 (mon.0) 573 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd pool create", "pool": ".nfs"}]: dispatch 2024-01-27T23:27:39.384 INFO:teuthology.orchestra.run.smithi073.stdout:NFS Cluster Created Successfully 2024-01-27T23:27:39.409 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:39 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:38.353050+0000 mon.smithi073 (mon.0) 574 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd='[{"prefix": "osd pool create", "pool": ".nfs"}]': finished 2024-01-27T23:27:39.409 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:39 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:27:38.353095+0000 mon.smithi073 (mon.0) 575 : cluster [DBG] osdmap e34: 8 total, 8 up, 8 in 2024-01-27T23:27:39.409 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:39 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:38.354911+0000 mon.smithi073 (mon.0) 576 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]: dispatch 2024-01-27T23:27:39.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:39 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:38.353050+0000 mon.smithi073 (mon.0) 574 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd='[{"prefix": "osd pool create", "pool": ".nfs"}]': finished 2024-01-27T23:27:39.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:39 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:27:38.353095+0000 mon.smithi073 (mon.0) 575 : cluster [DBG] osdmap e34: 8 total, 8 up, 8 in 2024-01-27T23:27:39.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:39 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:38.354911+0000 mon.smithi073 (mon.0) 576 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]: dispatch 2024-01-27T23:27:39.762 INFO:teuthology.run_tasks:Running task vip.exec... 2024-01-27T23:27:39.773 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi073.front.sepia.ceph.com 2024-01-27T23:27:39.773 DEBUG:teuthology.orchestra.run.smithi073:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'dnf install -y python3-boto3 || apt install -y python3-boto3' 2024-01-27T23:27:39.802 INFO:teuthology.orchestra.run.smithi073.stderr:+ dnf install -y python3-boto3 2024-01-27T23:27:40.117 INFO:teuthology.orchestra.run.smithi073.stdout:Updating Subscription Management repositories. 2024-01-27T23:27:40.503 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:40 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:27:38.997329+0000 mgr.smithi073.msdoog (mgr.14182) 134 : cluster [DBG] pgmap v99: 33 pgs: 8 creating+peering, 1 active+clean, 24 unknown; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:27:40.504 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:40 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:39.357531+0000 mon.smithi073 (mon.0) 577 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-01-27T23:27:40.504 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:40 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:27:39.357675+0000 mon.smithi073 (mon.0) 578 : cluster [DBG] osdmap e35: 8 total, 8 up, 8 in 2024-01-27T23:27:40.504 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:40 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:27:39.385894+0000 mgr.smithi073.msdoog (mgr.14182) 135 : cephadm [INF] Saving service nfs.foo spec with placement count:1 2024-01-27T23:27:40.504 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:40 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:39.389482+0000 mon.smithi073 (mon.0) 579 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:27:40.504 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:40 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:27:39.390890+0000 mgr.smithi073.msdoog (mgr.14182) 136 : cephadm [INF] Saving service ingress.nfs.foo spec with placement count:2 2024-01-27T23:27:40.504 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:40 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:39.394063+0000 mon.smithi073 (mon.0) 580 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:27:40.504 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:40 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:39.445571+0000 mon.smithi073 (mon.0) 581 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:27:40.504 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:40 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:39.446423+0000 mon.smithi073 (mon.0) 582 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:27:40.504 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:40 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:39.447022+0000 mon.smithi073 (mon.0) 583 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:27:40.504 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:40 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:39.450490+0000 mon.smithi073 (mon.0) 584 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:27:40.504 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:40 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:39.454368+0000 mon.smithi073 (mon.0) 585 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:27:40.505 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:40 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:27:39.459139+0000 mgr.smithi073.msdoog (mgr.14182) 137 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-01-27T23:27:40.505 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:40 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:39.462526+0000 mon.smithi073 (mon.0) 586 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:27:40.505 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:40 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:39.463336+0000 mon.smithi073 (mon.0) 587 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi186.ddvuyo", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-01-27T23:27:40.505 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:40 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:39.466814+0000 mon.smithi073 (mon.0) 588 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi186.ddvuyo", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-01-27T23:27:40.505 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:40 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:39.471476+0000 mon.smithi073 (mon.0) 589 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:27:40.505 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:40 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:39.472160+0000 mon.smithi073 (mon.0) 590 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:27:40.505 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:40 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:27:39.472670+0000 mgr.smithi073.msdoog (mgr.14182) 138 : cephadm [INF] Deploying daemon rgw.foorgw.smithi186.ddvuyo on smithi186 2024-01-27T23:27:40.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:40 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:27:38.997329+0000 mgr.smithi073.msdoog (mgr.14182) 134 : cluster [DBG] pgmap v99: 33 pgs: 8 creating+peering, 1 active+clean, 24 unknown; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:27:40.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:40 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:39.357531+0000 mon.smithi073 (mon.0) 577 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-01-27T23:27:40.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:40 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:27:39.357675+0000 mon.smithi073 (mon.0) 578 : cluster [DBG] osdmap e35: 8 total, 8 up, 8 in 2024-01-27T23:27:40.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:40 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:27:39.385894+0000 mgr.smithi073.msdoog (mgr.14182) 135 : cephadm [INF] Saving service nfs.foo spec with placement count:1 2024-01-27T23:27:40.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:40 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:39.389482+0000 mon.smithi073 (mon.0) 579 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:27:40.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:40 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:27:39.390890+0000 mgr.smithi073.msdoog (mgr.14182) 136 : cephadm [INF] Saving service ingress.nfs.foo spec with placement count:2 2024-01-27T23:27:40.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:40 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:39.394063+0000 mon.smithi073 (mon.0) 580 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:27:40.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:40 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:39.445571+0000 mon.smithi073 (mon.0) 581 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:27:40.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:40 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:39.446423+0000 mon.smithi073 (mon.0) 582 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:27:40.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:40 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:39.447022+0000 mon.smithi073 (mon.0) 583 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:27:40.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:40 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:39.450490+0000 mon.smithi073 (mon.0) 584 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:27:40.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:40 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:39.454368+0000 mon.smithi073 (mon.0) 585 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:27:40.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:40 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:27:39.459139+0000 mgr.smithi073.msdoog (mgr.14182) 137 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-01-27T23:27:40.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:40 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:39.462526+0000 mon.smithi073 (mon.0) 586 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:27:40.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:40 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:39.463336+0000 mon.smithi073 (mon.0) 587 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi186.ddvuyo", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-01-27T23:27:40.805 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:40 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:39.466814+0000 mon.smithi073 (mon.0) 588 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi186.ddvuyo", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-01-27T23:27:40.805 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:40 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:39.471476+0000 mon.smithi073 (mon.0) 589 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:27:40.805 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:40 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:39.472160+0000 mon.smithi073 (mon.0) 590 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:27:40.805 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:40 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:27:39.472670+0000 mgr.smithi073.msdoog (mgr.14182) 138 : cephadm [INF] Deploying daemon rgw.foorgw.smithi186.ddvuyo on smithi186 2024-01-27T23:27:40.960 INFO:teuthology.orchestra.run.smithi073.stdout:Red Hat Enterprise Linux 8 for x86_64 - BaseOS 90 kB/s | 4.1 kB 00:00 2024-01-27T23:27:41.228 INFO:teuthology.orchestra.run.smithi073.stdout:Red Hat Enterprise Linux 8 for x86_64 - AppStre 154 kB/s | 4.5 kB 00:00 2024-01-27T23:27:41.674 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:41 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:27:40.362345+0000 mon.smithi073 (mon.0) 591 : cluster [DBG] osdmap e36: 8 total, 8 up, 8 in 2024-01-27T23:27:41.674 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:41 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:27:40.476987+0000 mon.smithi073 (mon.0) 592 : cluster [DBG] mgrmap e19: smithi073.msdoog(active, since 2m), standbys: smithi186.vsupqe 2024-01-27T23:27:41.674 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:41 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:41.283483+0000 mon.smithi073 (mon.0) 593 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:27:41.674 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:41 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:41.284813+0000 mon.smithi073 (mon.0) 594 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi073.mreelv", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-01-27T23:27:41.674 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:41 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:41.287901+0000 mon.smithi073 (mon.0) 595 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi073.mreelv", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-01-27T23:27:41.674 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:41 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:41.292254+0000 mon.smithi073 (mon.0) 596 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:27:41.674 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:41 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:41.292971+0000 mon.smithi073 (mon.0) 597 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:27:41.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:41 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:27:40.362345+0000 mon.smithi073 (mon.0) 591 : cluster [DBG] osdmap e36: 8 total, 8 up, 8 in 2024-01-27T23:27:41.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:41 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:27:40.476987+0000 mon.smithi073 (mon.0) 592 : cluster [DBG] mgrmap e19: smithi073.msdoog(active, since 2m), standbys: smithi186.vsupqe 2024-01-27T23:27:41.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:41 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:41.283483+0000 mon.smithi073 (mon.0) 593 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:27:41.754 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:41 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:41.284813+0000 mon.smithi073 (mon.0) 594 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi073.mreelv", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-01-27T23:27:41.754 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:41 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:41.287901+0000 mon.smithi073 (mon.0) 595 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi073.mreelv", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-01-27T23:27:41.754 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:41 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:41.292254+0000 mon.smithi073 (mon.0) 596 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:27:41.754 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:41 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:41.292971+0000 mon.smithi073 (mon.0) 597 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:27:42.717 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:42 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:27:40.997679+0000 mgr.smithi073.msdoog (mgr.14182) 139 : cluster [DBG] pgmap v102: 33 pgs: 8 creating+peering, 3 active+clean, 22 unknown; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:27:42.717 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:42 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:27:41.293556+0000 mgr.smithi073.msdoog (mgr.14182) 140 : cephadm [INF] Deploying daemon rgw.foorgw.smithi073.mreelv on smithi073 2024-01-27T23:27:42.717 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:42 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:27:41.477925+0000 mon.smithi073 (mon.0) 598 : cluster [DBG] osdmap e37: 8 total, 8 up, 8 in 2024-01-27T23:27:42.717 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:42 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:41.478869+0000 mon.smithi186 (mon.1) 19 : audit [INF] from='client.? 172.21.15.186:0/4209487165' entity='client.rgw.foorgw.smithi186.ddvuyo' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-01-27T23:27:42.717 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:42 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:41.479484+0000 mon.smithi073 (mon.0) 599 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi186.ddvuyo' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-01-27T23:27:42.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:42 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:27:40.997679+0000 mgr.smithi073.msdoog (mgr.14182) 139 : cluster [DBG] pgmap v102: 33 pgs: 8 creating+peering, 3 active+clean, 22 unknown; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:27:42.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:42 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:27:41.293556+0000 mgr.smithi073.msdoog (mgr.14182) 140 : cephadm [INF] Deploying daemon rgw.foorgw.smithi073.mreelv on smithi073 2024-01-27T23:27:42.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:42 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:27:41.477925+0000 mon.smithi073 (mon.0) 598 : cluster [DBG] osdmap e37: 8 total, 8 up, 8 in 2024-01-27T23:27:42.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:42 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:41.478869+0000 mon.smithi186 (mon.1) 19 : audit [INF] from='client.? 172.21.15.186:0/4209487165' entity='client.rgw.foorgw.smithi186.ddvuyo' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-01-27T23:27:42.754 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:42 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:41.479484+0000 mon.smithi073 (mon.0) 599 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi186.ddvuyo' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-01-27T23:27:43.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:43 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:42.479762+0000 mon.smithi073 (mon.0) 600 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi186.ddvuyo' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-01-27T23:27:43.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:43 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:27:42.479943+0000 mon.smithi073 (mon.0) 601 : cluster [DBG] osdmap e38: 8 total, 8 up, 8 in 2024-01-27T23:27:43.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:43 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:43.157260+0000 mon.smithi073 (mon.0) 602 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:27:43.754 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:43 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:43.161751+0000 mon.smithi073 (mon.0) 603 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:27:43.754 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:43 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:43.187632+0000 mon.smithi073 (mon.0) 604 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi073.gcldqa", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]: dispatch 2024-01-27T23:27:43.754 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:43 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:43.193712+0000 mon.smithi073 (mon.0) 605 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi073.gcldqa", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-01-27T23:27:43.754 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:43 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:43.194446+0000 mon.smithi073 (mon.0) 606 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]: dispatch 2024-01-27T23:27:43.754 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:43 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:43.197696+0000 mon.smithi073 (mon.0) 607 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd='[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]': finished 2024-01-27T23:27:43.754 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:43 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:43.198602+0000 mon.smithi073 (mon.0) 608 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:27:43.754 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:43 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:43.234998+0000 mon.smithi073 (mon.0) 609 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]: dispatch 2024-01-27T23:27:43.754 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:43 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:43.239203+0000 mon.smithi073 (mon.0) 610 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-01-27T23:27:43.754 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:43 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:43.281152+0000 mon.smithi073 (mon.0) 611 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi073.gcldqa-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-01-27T23:27:43.754 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:43 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:43.284798+0000 mon.smithi073 (mon.0) 612 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi073.gcldqa-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-01-27T23:27:43.754 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:43 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:43.288035+0000 mon.smithi073 (mon.0) 613 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:27:43.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:43 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:42.479762+0000 mon.smithi073 (mon.0) 600 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi186.ddvuyo' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-01-27T23:27:43.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:43 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:27:42.479943+0000 mon.smithi073 (mon.0) 601 : cluster [DBG] osdmap e38: 8 total, 8 up, 8 in 2024-01-27T23:27:43.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:43 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:43.157260+0000 mon.smithi073 (mon.0) 602 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:27:43.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:43 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:43.161751+0000 mon.smithi073 (mon.0) 603 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:27:43.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:43 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:43.187632+0000 mon.smithi073 (mon.0) 604 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi073.gcldqa", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]: dispatch 2024-01-27T23:27:43.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:43 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:43.193712+0000 mon.smithi073 (mon.0) 605 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi073.gcldqa", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-01-27T23:27:43.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:43 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:43.194446+0000 mon.smithi073 (mon.0) 606 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]: dispatch 2024-01-27T23:27:43.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:43 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:43.197696+0000 mon.smithi073 (mon.0) 607 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd='[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]': finished 2024-01-27T23:27:43.805 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:43 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:43.198602+0000 mon.smithi073 (mon.0) 608 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:27:43.805 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:43 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:43.234998+0000 mon.smithi073 (mon.0) 609 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]: dispatch 2024-01-27T23:27:43.805 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:43 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:43.239203+0000 mon.smithi073 (mon.0) 610 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-01-27T23:27:43.805 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:43 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:43.281152+0000 mon.smithi073 (mon.0) 611 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi073.gcldqa-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-01-27T23:27:43.805 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:43 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:43.284798+0000 mon.smithi073 (mon.0) 612 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi073.gcldqa-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-01-27T23:27:43.805 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:43 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:43.288035+0000 mon.smithi073 (mon.0) 613 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:27:43.805 INFO:teuthology.orchestra.run.smithi073.stdout:Dependencies resolved. 2024-01-27T23:27:43.806 INFO:teuthology.orchestra.run.smithi073.stdout:================================================================================ 2024-01-27T23:27:43.806 INFO:teuthology.orchestra.run.smithi073.stdout: Package Arch Version Repository Size 2024-01-27T23:27:43.806 INFO:teuthology.orchestra.run.smithi073.stdout:================================================================================ 2024-01-27T23:27:43.806 INFO:teuthology.orchestra.run.smithi073.stdout:Installing: 2024-01-27T23:27:43.806 INFO:teuthology.orchestra.run.smithi073.stdout: python3-boto3 noarch 1.15.15-1.el8 epel 152 k 2024-01-27T23:27:43.806 INFO:teuthology.orchestra.run.smithi073.stdout:Installing dependencies: 2024-01-27T23:27:43.806 INFO:teuthology.orchestra.run.smithi073.stdout: python3-botocore noarch 1.18.15-1.el8 epel 4.5 M 2024-01-27T23:27:43.806 INFO:teuthology.orchestra.run.smithi073.stdout: python3-jmespath noarch 0.9.0-11.el8 rhel-8-for-x86_64-appstream-rpms 45 k 2024-01-27T23:27:43.806 INFO:teuthology.orchestra.run.smithi073.stdout: python3-s3transfer noarch 0.3.4-1.el8 epel 108 k 2024-01-27T23:27:43.806 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:27:43.807 INFO:teuthology.orchestra.run.smithi073.stdout:Transaction Summary 2024-01-27T23:27:43.807 INFO:teuthology.orchestra.run.smithi073.stdout:================================================================================ 2024-01-27T23:27:43.807 INFO:teuthology.orchestra.run.smithi073.stdout:Install 4 Packages 2024-01-27T23:27:43.807 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:27:43.807 INFO:teuthology.orchestra.run.smithi073.stdout:Total download size: 4.8 M 2024-01-27T23:27:43.808 INFO:teuthology.orchestra.run.smithi073.stdout:Installed size: 49 M 2024-01-27T23:27:43.808 INFO:teuthology.orchestra.run.smithi073.stdout:Downloading Packages: 2024-01-27T23:27:44.498 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:27:42.998104+0000 mgr.smithi073.msdoog (mgr.14182) 141 : cluster [DBG] pgmap v105: 65 pgs: 22 creating+peering, 25 active+clean, 18 unknown; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:27:44.498 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:27:43.187351+0000 mgr.smithi073.msdoog (mgr.14182) 142 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi073.gcldqa 2024-01-27T23:27:44.498 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:27:43.194240+0000 mgr.smithi073.msdoog (mgr.14182) 143 : cephadm [INF] Ensuring nfs.foo.0 is in the ganesha grace table 2024-01-27T23:27:44.498 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:27:43.280705+0000 mgr.smithi073.msdoog (mgr.14182) 144 : cephadm [INF] Rados config object exists: conf-nfs.foo 2024-01-27T23:27:44.498 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:27:43.280808+0000 mgr.smithi073.msdoog (mgr.14182) 145 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi073.gcldqa-rgw 2024-01-27T23:27:44.498 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:27:43.288744+0000 mgr.smithi073.msdoog (mgr.14182) 146 : cephadm [INF] Deploying daemon nfs.foo.0.0.smithi073.gcldqa on smithi073 2024-01-27T23:27:44.499 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:27:43.490496+0000 mon.smithi073 (mon.0) 614 : cluster [DBG] osdmap e39: 8 total, 8 up, 8 in 2024-01-27T23:27:44.499 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:43.491791+0000 mon.smithi073 (mon.0) 615 : audit [INF] from='client.? 172.21.15.73:0/3944935116' entity='client.rgw.foorgw.smithi073.mreelv' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-01-27T23:27:44.499 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:43.498310+0000 mon.smithi186 (mon.1) 20 : audit [INF] from='client.? 172.21.15.186:0/4209487165' entity='client.rgw.foorgw.smithi186.ddvuyo' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-01-27T23:27:44.499 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:43.498972+0000 mon.smithi073 (mon.0) 616 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi186.ddvuyo' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-01-27T23:27:44.554 INFO:teuthology.orchestra.run.smithi073.stdout:(1/4): python3-s3transfer-0.3.4-1.el8.noarch.rp 151 kB/s | 108 kB 00:00 2024-01-27T23:27:44.579 INFO:teuthology.orchestra.run.smithi073.stdout:(2/4): python3-boto3-1.15.15-1.el8.noarch.rpm 206 kB/s | 152 kB 00:00 2024-01-27T23:27:44.681 INFO:teuthology.orchestra.run.smithi073.stdout:(3/4): python3-jmespath-0.9.0-11.el8.noarch.rpm 357 kB/s | 45 kB 00:00 2024-01-27T23:27:44.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:44 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:27:42.998104+0000 mgr.smithi073.msdoog (mgr.14182) 141 : cluster [DBG] pgmap v105: 65 pgs: 22 creating+peering, 25 active+clean, 18 unknown; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-01-27T23:27:44.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:44 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:27:43.187351+0000 mgr.smithi073.msdoog (mgr.14182) 142 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi073.gcldqa 2024-01-27T23:27:44.754 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:44 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:27:43.194240+0000 mgr.smithi073.msdoog (mgr.14182) 143 : cephadm [INF] Ensuring nfs.foo.0 is in the ganesha grace table 2024-01-27T23:27:44.754 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:44 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:27:43.280705+0000 mgr.smithi073.msdoog (mgr.14182) 144 : cephadm [INF] Rados config object exists: conf-nfs.foo 2024-01-27T23:27:44.754 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:44 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:27:43.280808+0000 mgr.smithi073.msdoog (mgr.14182) 145 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi073.gcldqa-rgw 2024-01-27T23:27:44.754 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:44 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:27:43.288744+0000 mgr.smithi073.msdoog (mgr.14182) 146 : cephadm [INF] Deploying daemon nfs.foo.0.0.smithi073.gcldqa on smithi073 2024-01-27T23:27:44.754 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:44 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:27:43.490496+0000 mon.smithi073 (mon.0) 614 : cluster [DBG] osdmap e39: 8 total, 8 up, 8 in 2024-01-27T23:27:44.754 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:44 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:43.491791+0000 mon.smithi073 (mon.0) 615 : audit [INF] from='client.? 172.21.15.73:0/3944935116' entity='client.rgw.foorgw.smithi073.mreelv' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-01-27T23:27:44.754 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:44 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:43.498310+0000 mon.smithi186 (mon.1) 20 : audit [INF] from='client.? 172.21.15.186:0/4209487165' entity='client.rgw.foorgw.smithi186.ddvuyo' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-01-27T23:27:44.754 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:44 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:43.498972+0000 mon.smithi073 (mon.0) 616 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi186.ddvuyo' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-01-27T23:27:45.306 INFO:teuthology.orchestra.run.smithi073.stdout:(4/4): python3-botocore-1.18.15-1.el8.noarch.rp 3.0 MB/s | 4.5 MB 00:01 2024-01-27T23:27:45.308 INFO:teuthology.orchestra.run.smithi073.stdout:-------------------------------------------------------------------------------- 2024-01-27T23:27:45.308 INFO:teuthology.orchestra.run.smithi073.stdout:Total 3.2 MB/s | 4.8 MB 00:01 2024-01-27T23:27:45.321 INFO:teuthology.orchestra.run.smithi073.stdout:Running transaction check 2024-01-27T23:27:45.329 INFO:teuthology.orchestra.run.smithi073.stdout:Transaction check succeeded. 2024-01-27T23:27:45.329 INFO:teuthology.orchestra.run.smithi073.stdout:Running transaction test 2024-01-27T23:27:45.407 INFO:teuthology.orchestra.run.smithi073.stdout:Transaction test succeeded. 2024-01-27T23:27:45.417 INFO:teuthology.orchestra.run.smithi073.stdout:Running transaction 2024-01-27T23:27:45.623 INFO:teuthology.orchestra.run.smithi073.stdout: Preparing : 1/1 2024-01-27T23:27:45.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:45 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:44.491671+0000 mon.smithi073 (mon.0) 617 : audit [INF] from='client.? 172.21.15.73:0/3944935116' entity='client.rgw.foorgw.smithi073.mreelv' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-01-27T23:27:45.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:45 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:44.491849+0000 mon.smithi073 (mon.0) 618 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi186.ddvuyo' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-01-27T23:27:45.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:45 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:27:44.491953+0000 mon.smithi073 (mon.0) 619 : cluster [DBG] osdmap e40: 8 total, 8 up, 8 in 2024-01-27T23:27:45.753 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:45 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:45.021589+0000 mon.smithi073 (mon.0) 620 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:27:45.754 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:45 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:45.025674+0000 mon.smithi073 (mon.0) 621 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:27:45.754 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:45 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:45.031556+0000 mon.smithi073 (mon.0) 622 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:27:45.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:45 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:44.491671+0000 mon.smithi073 (mon.0) 617 : audit [INF] from='client.? 172.21.15.73:0/3944935116' entity='client.rgw.foorgw.smithi073.mreelv' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-01-27T23:27:45.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:45 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:44.491849+0000 mon.smithi073 (mon.0) 618 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi186.ddvuyo' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-01-27T23:27:45.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:45 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:27:44.491953+0000 mon.smithi073 (mon.0) 619 : cluster [DBG] osdmap e40: 8 total, 8 up, 8 in 2024-01-27T23:27:45.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:45 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:45.021589+0000 mon.smithi073 (mon.0) 620 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:27:45.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:45 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:45.025674+0000 mon.smithi073 (mon.0) 621 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:27:45.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:45 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:45.031556+0000 mon.smithi073 (mon.0) 622 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:27:46.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:27:44.998464+0000 mgr.smithi073.msdoog (mgr.14182) 147 : cluster [DBG] pgmap v108: 97 pgs: 25 creating+peering, 42 active+clean, 30 unknown; 358 B data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 406 B/s wr, 1 op/s 2024-01-27T23:27:46.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:27:45.040716+0000 mgr.smithi073.msdoog (mgr.14182) 148 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi186.zstaqw on smithi186 2024-01-27T23:27:46.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:27:45.506846+0000 mon.smithi073 (mon.0) 623 : cluster [DBG] osdmap e41: 8 total, 8 up, 8 in 2024-01-27T23:27:46.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:45.507827+0000 mon.smithi073 (mon.0) 624 : audit [INF] from='client.? 172.21.15.73:0/3944935116' entity='client.rgw.foorgw.smithi073.mreelv' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-01-27T23:27:46.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:45.508543+0000 mon.smithi186 (mon.1) 21 : audit [INF] from='client.? 172.21.15.186:0/4209487165' entity='client.rgw.foorgw.smithi186.ddvuyo' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-01-27T23:27:46.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:45.509078+0000 mon.smithi073 (mon.0) 625 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi186.ddvuyo' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-01-27T23:27:46.876 INFO:teuthology.orchestra.run.smithi073.stdout: Installing : python3-jmespath-0.9.0-11.el8.noarch 1/4 2024-01-27T23:27:47.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:27:44.998464+0000 mgr.smithi073.msdoog (mgr.14182) 147 : cluster [DBG] pgmap v108: 97 pgs: 25 creating+peering, 42 active+clean, 30 unknown; 358 B data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 406 B/s wr, 1 op/s 2024-01-27T23:27:47.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:27:45.040716+0000 mgr.smithi073.msdoog (mgr.14182) 148 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi186.zstaqw on smithi186 2024-01-27T23:27:47.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:27:45.506846+0000 mon.smithi073 (mon.0) 623 : cluster [DBG] osdmap e41: 8 total, 8 up, 8 in 2024-01-27T23:27:47.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:45.507827+0000 mon.smithi073 (mon.0) 624 : audit [INF] from='client.? 172.21.15.73:0/3944935116' entity='client.rgw.foorgw.smithi073.mreelv' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-01-27T23:27:47.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:45.508543+0000 mon.smithi186 (mon.1) 21 : audit [INF] from='client.? 172.21.15.186:0/4209487165' entity='client.rgw.foorgw.smithi186.ddvuyo' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-01-27T23:27:47.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:45.509078+0000 mon.smithi073 (mon.0) 625 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi186.ddvuyo' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-01-27T23:27:47.145 INFO:teuthology.orchestra.run.smithi073.stdout: Installing : python3-botocore-1.18.15-1.el8.noarch 2/4 2024-01-27T23:27:47.355 INFO:teuthology.orchestra.run.smithi073.stdout: Installing : python3-s3transfer-0.3.4-1.el8.noarch 3/4 2024-01-27T23:27:47.593 INFO:teuthology.orchestra.run.smithi073.stdout: Installing : python3-boto3-1.15.15-1.el8.noarch 4/4 2024-01-27T23:27:47.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:47 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:46.511384+0000 mon.smithi073 (mon.0) 626 : audit [INF] from='client.? 172.21.15.73:0/3944935116' entity='client.rgw.foorgw.smithi073.mreelv' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-01-27T23:27:47.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:47 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:46.511520+0000 mon.smithi073 (mon.0) 627 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi186.ddvuyo' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-01-27T23:27:47.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:47 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:27:46.511684+0000 mon.smithi073 (mon.0) 628 : cluster [DBG] osdmap e42: 8 total, 8 up, 8 in 2024-01-27T23:27:47.832 INFO:teuthology.orchestra.run.smithi073.stdout: Running scriptlet: python3-boto3-1.15.15-1.el8.noarch 4/4 2024-01-27T23:27:47.832 INFO:teuthology.orchestra.run.smithi073.stdout: Verifying : python3-boto3-1.15.15-1.el8.noarch 1/4 2024-01-27T23:27:47.832 INFO:teuthology.orchestra.run.smithi073.stdout: Verifying : python3-botocore-1.18.15-1.el8.noarch 2/4 2024-01-27T23:27:47.832 INFO:teuthology.orchestra.run.smithi073.stdout: Verifying : python3-s3transfer-0.3.4-1.el8.noarch 3/4 2024-01-27T23:27:48.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:47 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:46.511384+0000 mon.smithi073 (mon.0) 626 : audit [INF] from='client.? 172.21.15.73:0/3944935116' entity='client.rgw.foorgw.smithi073.mreelv' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-01-27T23:27:48.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:47 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:46.511520+0000 mon.smithi073 (mon.0) 627 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi186.ddvuyo' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-01-27T23:27:48.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:47 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:27:46.511684+0000 mon.smithi073 (mon.0) 628 : cluster [DBG] osdmap e42: 8 total, 8 up, 8 in 2024-01-27T23:27:48.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:48 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:27:46.998960+0000 mgr.smithi073.msdoog (mgr.14182) 149 : cluster [DBG] pgmap v111: 129 pgs: 17 creating+peering, 98 active+clean, 14 unknown; 1.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 7.2 KiB/s rd, 3.5 KiB/s wr, 12 op/s 2024-01-27T23:27:48.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:48 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:27:47.524764+0000 mon.smithi073 (mon.0) 629 : cluster [DBG] osdmap e43: 8 total, 8 up, 8 in 2024-01-27T23:27:48.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:48 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:47.525798+0000 mon.smithi073 (mon.0) 630 : audit [INF] from='client.? 172.21.15.73:0/3934368109' entity='client.rgw.foorgw.smithi073.mreelv' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-01-27T23:27:48.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:48 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:47.528000+0000 mon.smithi186 (mon.1) 22 : audit [INF] from='client.? 172.21.15.186:0/1880155849' entity='client.rgw.foorgw.smithi186.ddvuyo' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-01-27T23:27:48.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:48 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:47.530552+0000 mon.smithi073 (mon.0) 631 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi186.ddvuyo' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-01-27T23:27:49.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:48 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:27:46.998960+0000 mgr.smithi073.msdoog (mgr.14182) 149 : cluster [DBG] pgmap v111: 129 pgs: 17 creating+peering, 98 active+clean, 14 unknown; 1.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 7.2 KiB/s rd, 3.5 KiB/s wr, 12 op/s 2024-01-27T23:27:49.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:48 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:27:47.524764+0000 mon.smithi073 (mon.0) 629 : cluster [DBG] osdmap e43: 8 total, 8 up, 8 in 2024-01-27T23:27:49.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:48 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:47.525798+0000 mon.smithi073 (mon.0) 630 : audit [INF] from='client.? 172.21.15.73:0/3934368109' entity='client.rgw.foorgw.smithi073.mreelv' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-01-27T23:27:49.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:48 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:47.528000+0000 mon.smithi186 (mon.1) 22 : audit [INF] from='client.? 172.21.15.186:0/1880155849' entity='client.rgw.foorgw.smithi186.ddvuyo' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-01-27T23:27:49.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:48 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:47.530552+0000 mon.smithi073 (mon.0) 631 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi186.ddvuyo' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-01-27T23:27:49.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:49 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:48.530103+0000 mon.smithi073 (mon.0) 632 : audit [INF] from='client.? 172.21.15.73:0/3934368109' entity='client.rgw.foorgw.smithi073.mreelv' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-01-27T23:27:49.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:49 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:48.530267+0000 mon.smithi073 (mon.0) 633 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi186.ddvuyo' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-01-27T23:27:49.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:49 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:27:48.530370+0000 mon.smithi073 (mon.0) 634 : cluster [DBG] osdmap e44: 8 total, 8 up, 8 in 2024-01-27T23:27:49.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:49 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:48.535600+0000 mon.smithi073 (mon.0) 635 : audit [INF] from='client.? 172.21.15.73:0/3934368109' entity='client.rgw.foorgw.smithi073.mreelv' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-01-27T23:27:49.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:49 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:48.538665+0000 mon.smithi186 (mon.1) 23 : audit [INF] from='client.? 172.21.15.186:0/1880155849' entity='client.rgw.foorgw.smithi186.ddvuyo' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-01-27T23:27:49.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:49 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:48.539376+0000 mon.smithi073 (mon.0) 636 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi186.ddvuyo' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-01-27T23:27:50.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:49 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:48.530103+0000 mon.smithi073 (mon.0) 632 : audit [INF] from='client.? 172.21.15.73:0/3934368109' entity='client.rgw.foorgw.smithi073.mreelv' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-01-27T23:27:50.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:49 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:48.530267+0000 mon.smithi073 (mon.0) 633 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi186.ddvuyo' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-01-27T23:27:50.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:49 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:27:48.530370+0000 mon.smithi073 (mon.0) 634 : cluster [DBG] osdmap e44: 8 total, 8 up, 8 in 2024-01-27T23:27:50.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:49 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:48.535600+0000 mon.smithi073 (mon.0) 635 : audit [INF] from='client.? 172.21.15.73:0/3934368109' entity='client.rgw.foorgw.smithi073.mreelv' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-01-27T23:27:50.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:49 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:48.538665+0000 mon.smithi186 (mon.1) 23 : audit [INF] from='client.? 172.21.15.186:0/1880155849' entity='client.rgw.foorgw.smithi186.ddvuyo' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-01-27T23:27:50.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:49 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:48.539376+0000 mon.smithi073 (mon.0) 636 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi186.ddvuyo' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-01-27T23:27:50.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:27:48.999490+0000 mgr.smithi073.msdoog (mgr.14182) 150 : cluster [DBG] pgmap v114: 161 pgs: 6 creating+peering, 132 active+clean, 23 unknown; 1.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 6.5 KiB/s rd, 3.2 KiB/s wr, 11 op/s 2024-01-27T23:27:50.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:49.540937+0000 mon.smithi073 (mon.0) 637 : audit [INF] from='client.? 172.21.15.73:0/3934368109' entity='client.rgw.foorgw.smithi073.mreelv' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-01-27T23:27:50.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:49.540998+0000 mon.smithi073 (mon.0) 638 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi186.ddvuyo' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-01-27T23:27:50.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:27:49.541040+0000 mon.smithi073 (mon.0) 639 : cluster [DBG] osdmap e45: 8 total, 8 up, 8 in 2024-01-27T23:27:50.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:50.027333+0000 mon.smithi073 (mon.0) 640 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:27:51.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:27:48.999490+0000 mgr.smithi073.msdoog (mgr.14182) 150 : cluster [DBG] pgmap v114: 161 pgs: 6 creating+peering, 132 active+clean, 23 unknown; 1.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 6.5 KiB/s rd, 3.2 KiB/s wr, 11 op/s 2024-01-27T23:27:51.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:49.540937+0000 mon.smithi073 (mon.0) 637 : audit [INF] from='client.? 172.21.15.73:0/3934368109' entity='client.rgw.foorgw.smithi073.mreelv' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-01-27T23:27:51.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:49.540998+0000 mon.smithi073 (mon.0) 638 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi186.ddvuyo' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-01-27T23:27:51.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:27:49.541040+0000 mon.smithi073 (mon.0) 639 : cluster [DBG] osdmap e45: 8 total, 8 up, 8 in 2024-01-27T23:27:51.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:50.027333+0000 mon.smithi073 (mon.0) 640 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:27:52.323 INFO:teuthology.orchestra.run.smithi073.stdout: Verifying : python3-jmespath-0.9.0-11.el8.noarch 4/4 2024-01-27T23:27:52.323 INFO:teuthology.orchestra.run.smithi073.stdout:Installed products updated. 2024-01-27T23:27:52.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:52 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:27:50.999935+0000 mgr.smithi073.msdoog (mgr.14182) 151 : cluster [DBG] pgmap v116: 161 pgs: 2 creating+peering, 139 active+clean, 20 unknown; 2.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 37 KiB/s rd, 3.8 KiB/s wr, 77 op/s 2024-01-27T23:27:52.846 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:27:52.846 INFO:teuthology.orchestra.run.smithi073.stdout:Installed: 2024-01-27T23:27:52.846 INFO:teuthology.orchestra.run.smithi073.stdout: python3-boto3-1.15.15-1.el8.noarch python3-botocore-1.18.15-1.el8.noarch 2024-01-27T23:27:52.846 INFO:teuthology.orchestra.run.smithi073.stdout: python3-jmespath-0.9.0-11.el8.noarch python3-s3transfer-0.3.4-1.el8.noarch 2024-01-27T23:27:52.847 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:27:52.847 INFO:teuthology.orchestra.run.smithi073.stdout:Complete! 2024-01-27T23:27:53.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:52 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:27:50.999935+0000 mgr.smithi073.msdoog (mgr.14182) 151 : cluster [DBG] pgmap v116: 161 pgs: 2 creating+peering, 139 active+clean, 20 unknown; 2.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 37 KiB/s rd, 3.8 KiB/s wr, 77 op/s 2024-01-27T23:27:53.020 DEBUG:teuthology.orchestra.run.smithi073:> 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' 2024-01-27T23:27:53.088 INFO:teuthology.orchestra.run.smithi073.stderr:+ /home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo 2024-01-27T23:27:53.330 INFO:teuthology.orchestra.run.smithi073.stderr:Inferring fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 2024-01-27T23:27:53.356 INFO:teuthology.orchestra.run.smithi073.stderr:Using recent ceph image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:e3ad1a2b0241ab3f1cea37a2b2c536cd3eb3cb0a7576a757f1a81d5db9b1bc37 2024-01-27T23:27:54.663 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:54 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:27:53.000459+0000 mgr.smithi073.msdoog (mgr.14182) 152 : cluster [DBG] pgmap v117: 161 pgs: 161 active+clean; 3.4 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 74 KiB/s rd, 3.0 KiB/s wr, 154 op/s 2024-01-27T23:27:54.869 INFO:teuthology.run_tasks:Running task python... 2024-01-27T23:27:54.884 INFO:tasks.python:Running python on role host.a host ubuntu@smithi073.front.sepia.ceph.com 2024-01-27T23:27:54.884 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') 2024-01-27T23:27:54.884 DEBUG:teuthology.orchestra.run.smithi073:> sudo TESTDIR=/home/ubuntu/cephtest python3 2024-01-27T23:27:55.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:54 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:27:53.000459+0000 mgr.smithi073.msdoog (mgr.14182) 152 : cluster [DBG] pgmap v117: 161 pgs: 161 active+clean; 3.4 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 74 KiB/s rd, 3.0 KiB/s wr, 154 op/s 2024-01-27T23:27:57.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:56 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:27:55.000941+0000 mgr.smithi073.msdoog (mgr.14182) 153 : cluster [DBG] pgmap v118: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 KiB/s rd, 4.3 KiB/s wr, 208 op/s 2024-01-27T23:27:57.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:56 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:27:55.556060+0000 mon.smithi073 (mon.0) 641 : cluster [DBG] osdmap e46: 8 total, 8 up, 8 in 2024-01-27T23:27:57.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:56 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:55.556584+0000 mon.smithi073 (mon.0) 642 : audit [INF] from='client.? 172.21.15.73:0/3944935116' entity='client.rgw.foorgw.smithi073.mreelv' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]: dispatch 2024-01-27T23:27:57.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:56 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:27:55.000941+0000 mgr.smithi073.msdoog (mgr.14182) 153 : cluster [DBG] pgmap v118: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 KiB/s rd, 4.3 KiB/s wr, 208 op/s 2024-01-27T23:27:57.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:56 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:27:55.556060+0000 mon.smithi073 (mon.0) 641 : cluster [DBG] osdmap e46: 8 total, 8 up, 8 in 2024-01-27T23:27:57.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:56 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:55.556584+0000 mon.smithi073 (mon.0) 642 : audit [INF] from='client.? 172.21.15.73:0/3944935116' entity='client.rgw.foorgw.smithi073.mreelv' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]: dispatch 2024-01-27T23:27:58.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:57 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:56.558708+0000 mon.smithi073 (mon.0) 643 : audit [INF] from='client.? 172.21.15.73:0/3944935116' entity='client.rgw.foorgw.smithi073.mreelv' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-01-27T23:27:58.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:57 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:27:56.558952+0000 mon.smithi073 (mon.0) 644 : cluster [DBG] osdmap e47: 8 total, 8 up, 8 in 2024-01-27T23:27:58.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:57 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:56.565396+0000 mon.smithi073 (mon.0) 645 : audit [INF] from='client.? 172.21.15.73:0/3944935116' entity='client.rgw.foorgw.smithi073.mreelv' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-01-27T23:27:58.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:57 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:57.558147+0000 mon.smithi073 (mon.0) 646 : audit [INF] from='client.? 172.21.15.73:0/3944935116' entity='client.rgw.foorgw.smithi073.mreelv' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-01-27T23:27:58.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:57 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:27:57.558235+0000 mon.smithi073 (mon.0) 647 : cluster [DBG] osdmap e48: 8 total, 8 up, 8 in 2024-01-27T23:27:58.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:57 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:56.558708+0000 mon.smithi073 (mon.0) 643 : audit [INF] from='client.? 172.21.15.73:0/3944935116' entity='client.rgw.foorgw.smithi073.mreelv' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-01-27T23:27:58.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:57 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:27:56.558952+0000 mon.smithi073 (mon.0) 644 : cluster [DBG] osdmap e47: 8 total, 8 up, 8 in 2024-01-27T23:27:58.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:57 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:56.565396+0000 mon.smithi073 (mon.0) 645 : audit [INF] from='client.? 172.21.15.73:0/3944935116' entity='client.rgw.foorgw.smithi073.mreelv' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-01-27T23:27:58.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:57 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:57.558147+0000 mon.smithi073 (mon.0) 646 : audit [INF] from='client.? 172.21.15.73:0/3944935116' entity='client.rgw.foorgw.smithi073.mreelv' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-01-27T23:27:58.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:57 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:27:57.558235+0000 mon.smithi073 (mon.0) 647 : cluster [DBG] osdmap e48: 8 total, 8 up, 8 in 2024-01-27T23:27:59.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:58 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:27:57.001507+0000 mgr.smithi073.msdoog (mgr.14182) 154 : cluster [DBG] pgmap v121: 193 pgs: 8 creating+peering, 9 unknown, 176 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 103 KiB/s rd, 4.6 KiB/s wr, 210 op/s 2024-01-27T23:27:59.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:58 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:27:57.001507+0000 mgr.smithi073.msdoog (mgr.14182) 154 : cluster [DBG] pgmap v121: 193 pgs: 8 creating+peering, 9 unknown, 176 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 103 KiB/s rd, 4.6 KiB/s wr, 210 op/s 2024-01-27T23:27:59.639 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-01-27T23:27:59.649 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi073.front.sepia.ceph.com 2024-01-27T23:27:59.649 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- bash -c 'ceph nfs export create rgw --bucket foobucket --cluster-id foo --pseudo-path /foobucket' 2024-01-27T23:27:59.970 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:59 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:27:58.585323+0000 mon.smithi073 (mon.0) 648 : cluster [DBG] osdmap e49: 8 total, 8 up, 8 in 2024-01-27T23:27:59.970 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:27:59 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:58.586540+0000 mon.smithi073 (mon.0) 649 : audit [INF] from='client.? 172.21.15.73:0/3934368109' entity='client.rgw.foorgw.smithi073.mreelv' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]: dispatch 2024-01-27T23:28:00.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:59 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:27:58.585323+0000 mon.smithi073 (mon.0) 648 : cluster [DBG] osdmap e49: 8 total, 8 up, 8 in 2024-01-27T23:28:00.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:27:59 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:58.586540+0000 mon.smithi073 (mon.0) 649 : audit [INF] from='client.? 172.21.15.73:0/3934368109' entity='client.rgw.foorgw.smithi073.mreelv' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]: dispatch 2024-01-27T23:28:01.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:00 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:27:59.002223+0000 mgr.smithi073.msdoog (mgr.14182) 155 : cluster [DBG] pgmap v124: 225 pgs: 20 creating+peering, 20 unknown, 185 active+clean; 6.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.2 KiB/s rd, 1.5 KiB/s wr, 6 op/s 2024-01-27T23:28:01.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:00 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:27:59.590019+0000 mon.smithi073 (mon.0) 650 : audit [INF] from='client.? 172.21.15.73:0/3934368109' entity='client.rgw.foorgw.smithi073.mreelv' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-01-27T23:28:01.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:00 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:27:59.590342+0000 mon.smithi073 (mon.0) 651 : cluster [DBG] osdmap e50: 8 total, 8 up, 8 in 2024-01-27T23:28:01.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:00 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:28:00.034375+0000 mon.smithi073 (mon.0) 652 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:28:01.055 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:00 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:27:59.002223+0000 mgr.smithi073.msdoog (mgr.14182) 155 : cluster [DBG] pgmap v124: 225 pgs: 20 creating+peering, 20 unknown, 185 active+clean; 6.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.2 KiB/s rd, 1.5 KiB/s wr, 6 op/s 2024-01-27T23:28:01.056 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:00 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:27:59.590019+0000 mon.smithi073 (mon.0) 650 : audit [INF] from='client.? 172.21.15.73:0/3934368109' entity='client.rgw.foorgw.smithi073.mreelv' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-01-27T23:28:01.056 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:00 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:27:59.590342+0000 mon.smithi073 (mon.0) 651 : cluster [DBG] osdmap e50: 8 total, 8 up, 8 in 2024-01-27T23:28:01.056 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:00 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:28:00.034375+0000 mon.smithi073 (mon.0) 652 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:28:01.223 INFO:teuthology.orchestra.run.smithi073.stdout:{ 2024-01-27T23:28:01.224 INFO:teuthology.orchestra.run.smithi073.stdout: "bind": "/foobucket", 2024-01-27T23:28:01.224 INFO:teuthology.orchestra.run.smithi073.stdout: "path": "foobucket", 2024-01-27T23:28:01.224 INFO:teuthology.orchestra.run.smithi073.stdout: "cluster": "foo", 2024-01-27T23:28:01.224 INFO:teuthology.orchestra.run.smithi073.stdout: "mode": "RW", 2024-01-27T23:28:01.224 INFO:teuthology.orchestra.run.smithi073.stdout: "squash": "none" 2024-01-27T23:28:01.224 INFO:teuthology.orchestra.run.smithi073.stdout:} 2024-01-27T23:28:01.603 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2024-01-27T23:28:01.615 INFO:tasks.cephadm:Waiting for ceph service nfs.foo to start (timeout 300)... 2024-01-27T23:28:01.615 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:28:01.803 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:01 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:28:00.593734+0000 mon.smithi073 (mon.0) 653 : cluster [DBG] osdmap e51: 8 total, 8 up, 8 in 2024-01-27T23:28:01.970 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:01 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:28:00.593734+0000 mon.smithi073 (mon.0) 653 : cluster [DBG] osdmap e51: 8 total, 8 up, 8 in 2024-01-27T23:28:02.915 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:28:02.915 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z 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.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:28:02.940 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:02 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:28:01.002737+0000 mgr.smithi073.msdoog (mgr.14182) 156 : cluster [DBG] pgmap v127: 225 pgs: 14 creating+peering, 13 unknown, 198 active+clean; 6.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 767 B/s rd, 1023 B/s wr, 3 op/s 2024-01-27T23:28:02.940 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:02 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:28:01.011138+0000 mgr.smithi073.msdoog (mgr.14182) 157 : audit [DBG] from='client.14568 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "bucket": "foobucket", "cluster_id": "foo", "pseudo_path": "/foobucket", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:28:03.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:02 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:28:01.002737+0000 mgr.smithi073.msdoog (mgr.14182) 156 : cluster [DBG] pgmap v127: 225 pgs: 14 creating+peering, 13 unknown, 198 active+clean; 6.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 767 B/s rd, 1023 B/s wr, 3 op/s 2024-01-27T23:28:03.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:02 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:28:01.011138+0000 mgr.smithi073.msdoog (mgr.14182) 157 : audit [DBG] from='client.14568 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "bucket": "foobucket", "cluster_id": "foo", "pseudo_path": "/foobucket", "target": ["mon-mgr", ""]}]: dispatch 2024-01-27T23:28:03.301 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:28:04.302 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:28:04.929 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:04 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:28:02.922473+0000 mgr.smithi073.msdoog (mgr.14182) 158 : audit [DBG] from='client.14602 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:28:04.929 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:04 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:28:03.003443+0000 mgr.smithi073.msdoog (mgr.14182) 159 : cluster [DBG] pgmap v128: 225 pgs: 12 creating+peering, 213 active+clean; 6.7 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 15 KiB/s rd, 1.7 KiB/s wr, 24 op/s 2024-01-27T23:28:05.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:04 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:28:02.922473+0000 mgr.smithi073.msdoog (mgr.14182) 158 : audit [DBG] from='client.14602 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:28:05.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:04 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:28:03.003443+0000 mgr.smithi073.msdoog (mgr.14182) 159 : cluster [DBG] pgmap v128: 225 pgs: 12 creating+peering, 213 active+clean; 6.7 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 15 KiB/s rd, 1.7 KiB/s wr, 24 op/s 2024-01-27T23:28:05.598 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:28:05.598 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z 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.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:28:05.984 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:28:06.985 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:28:07.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:06 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:28:05.004089+0000 mgr.smithi073.msdoog (mgr.14182) 160 : cluster [DBG] pgmap v129: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 20 KiB/s rd, 1.6 KiB/s wr, 31 op/s 2024-01-27T23:28:07.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:06 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:28:05.605806+0000 mgr.smithi073.msdoog (mgr.14182) 161 : audit [DBG] from='client.14606 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:28:07.019 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:06 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:28:05.004089+0000 mgr.smithi073.msdoog (mgr.14182) 160 : cluster [DBG] pgmap v129: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 20 KiB/s rd, 1.6 KiB/s wr, 31 op/s 2024-01-27T23:28:07.019 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:06 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:28:05.605806+0000 mgr.smithi073.msdoog (mgr.14182) 161 : audit [DBG] from='client.14606 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:28:07.962 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:07 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:28:06.995703+0000 mon.smithi073 (mon.0) 654 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.8", "id": [4, 6]}]: dispatch 2024-01-27T23:28:07.962 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:07 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:28:06.995956+0000 mon.smithi073 (mon.0) 655 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.1", "id": [5, 3]}]: dispatch 2024-01-27T23:28:08.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:07 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:28:06.995703+0000 mon.smithi073 (mon.0) 654 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.8", "id": [4, 6]}]: dispatch 2024-01-27T23:28:08.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:07 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:28:06.995956+0000 mon.smithi073 (mon.0) 655 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.1", "id": [5, 3]}]: dispatch 2024-01-27T23:28:08.314 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:28:08.315 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z 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.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:28:08.700 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:28:09.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:08 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:28:07.004902+0000 mgr.smithi073.msdoog (mgr.14182) 162 : cluster [DBG] pgmap v130: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 17 KiB/s rd, 767 B/s wr, 25 op/s 2024-01-27T23:28:09.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:08 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:28:07.620463+0000 mon.smithi073 (mon.0) 656 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.8", "id": [4, 6]}]': finished 2024-01-27T23:28:09.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:08 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:28:07.620543+0000 mon.smithi073 (mon.0) 657 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.1", "id": [5, 3]}]': finished 2024-01-27T23:28:09.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:08 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:28:07.620594+0000 mon.smithi073 (mon.0) 658 : cluster [DBG] osdmap e52: 8 total, 8 up, 8 in 2024-01-27T23:28:09.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:08 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:28:07.004902+0000 mgr.smithi073.msdoog (mgr.14182) 162 : cluster [DBG] pgmap v130: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 17 KiB/s rd, 767 B/s wr, 25 op/s 2024-01-27T23:28:09.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:08 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:28:07.620463+0000 mon.smithi073 (mon.0) 656 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.8", "id": [4, 6]}]': finished 2024-01-27T23:28:09.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:08 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:28:07.620543+0000 mon.smithi073 (mon.0) 657 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.1", "id": [5, 3]}]': finished 2024-01-27T23:28:09.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:08 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:28:07.620594+0000 mon.smithi073 (mon.0) 658 : cluster [DBG] osdmap e52: 8 total, 8 up, 8 in 2024-01-27T23:28:09.701 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:28:10.003 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:09 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:28:08.321897+0000 mgr.smithi073.msdoog (mgr.14182) 163 : audit [DBG] from='client.14610 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:28:10.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:09 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:28:08.622199+0000 mon.smithi073 (mon.0) 659 : cluster [DBG] osdmap e53: 8 total, 8 up, 8 in 2024-01-27T23:28:10.027 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:09 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:28:08.321897+0000 mgr.smithi073.msdoog (mgr.14182) 163 : audit [DBG] from='client.14610 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:28:10.027 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:09 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:28:08.622199+0000 mon.smithi073 (mon.0) 659 : cluster [DBG] osdmap e53: 8 total, 8 up, 8 in 2024-01-27T23:28:11.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:10 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:28:09.005499+0000 mgr.smithi073.msdoog (mgr.14182) 164 : cluster [DBG] pgmap v133: 225 pgs: 1 activating, 224 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 17 KiB/s rd, 767 B/s wr, 25 op/s 2024-01-27T23:28:11.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:10 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:28:10.049782+0000 mon.smithi073 (mon.0) 660 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:28:11.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:10 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:28:09.005499+0000 mgr.smithi073.msdoog (mgr.14182) 164 : cluster [DBG] pgmap v133: 225 pgs: 1 activating, 224 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 17 KiB/s rd, 767 B/s wr, 25 op/s 2024-01-27T23:28:11.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:10 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:28:10.049782+0000 mon.smithi073 (mon.0) 660 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:28:11.056 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:28:11.056 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z 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.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:28:11.424 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:28:12.425 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:28:12.743 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:12 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:28:11.005987+0000 mgr.smithi073.msdoog (mgr.14182) 165 : cluster [DBG] pgmap v134: 225 pgs: 1 activating, 224 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 7.2 KiB/s rd, 127 B/s wr, 10 op/s 2024-01-27T23:28:12.743 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:12 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:28:11.063883+0000 mgr.smithi073.msdoog (mgr.14182) 166 : audit [DBG] from='client.14614 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:28:13.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:12 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:28:11.005987+0000 mgr.smithi073.msdoog (mgr.14182) 165 : cluster [DBG] pgmap v134: 225 pgs: 1 activating, 224 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 7.2 KiB/s rd, 127 B/s wr, 10 op/s 2024-01-27T23:28:13.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:12 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:28:11.063883+0000 mgr.smithi073.msdoog (mgr.14182) 166 : audit [DBG] from='client.14614 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:28:13.749 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:28:13.750 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z 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.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:28:14.123 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:28:15.005 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:14 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:28:13.006607+0000 mgr.smithi073.msdoog (mgr.14182) 167 : cluster [DBG] pgmap v135: 225 pgs: 1 activating, 224 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.4 KiB/s rd, 0 B/s wr, 2 op/s 2024-01-27T23:28:15.005 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:14 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:28:13.756463+0000 mgr.smithi073.msdoog (mgr.14182) 168 : audit [DBG] from='client.14618 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:28:15.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:14 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:28:13.006607+0000 mgr.smithi073.msdoog (mgr.14182) 167 : cluster [DBG] pgmap v135: 225 pgs: 1 activating, 224 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.4 KiB/s rd, 0 B/s wr, 2 op/s 2024-01-27T23:28:15.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:14 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:28:13.756463+0000 mgr.smithi073.msdoog (mgr.14182) 168 : audit [DBG] from='client.14618 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:28:15.124 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:28:16.449 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:28:16.450 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z 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.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:28:16.746 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:28:15.007395+0000 mgr.smithi073.msdoog (mgr.14182) 169 : cluster [DBG] pgmap v136: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-01-27T23:28:16.833 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:28:17.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:28:15.007395+0000 mgr.smithi073.msdoog (mgr.14182) 169 : cluster [DBG] pgmap v136: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-01-27T23:28:17.834 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:28:18.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:17 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:28:16.457173+0000 mgr.smithi073.msdoog (mgr.14182) 170 : audit [DBG] from='client.14622 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:28:18.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:17 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:28:16.457173+0000 mgr.smithi073.msdoog (mgr.14182) 170 : audit [DBG] from='client.14622 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:28:18.777 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:18 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:28:17.008049+0000 mgr.smithi073.msdoog (mgr.14182) 171 : cluster [DBG] pgmap v137: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 109 B/s rd, 0 op/s 2024-01-27T23:28:19.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:18 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:28:17.008049+0000 mgr.smithi073.msdoog (mgr.14182) 171 : cluster [DBG] pgmap v137: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 109 B/s rd, 0 op/s 2024-01-27T23:28:19.122 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:28:19.122 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z 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.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:28:19.558 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:28:20.559 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:28:20.909 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:28:19.008616+0000 mgr.smithi073.msdoog (mgr.14182) 172 : cluster [DBG] pgmap v138: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 98 B/s rd, 0 op/s 2024-01-27T23:28:20.909 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:28:19.129542+0000 mgr.smithi073.msdoog (mgr.14182) 173 : audit [DBG] from='client.14626 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:28:20.909 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:28:20.065227+0000 mon.smithi073 (mon.0) 661 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:28:21.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:28:19.008616+0000 mgr.smithi073.msdoog (mgr.14182) 172 : cluster [DBG] pgmap v138: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 98 B/s rd, 0 op/s 2024-01-27T23:28:21.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:28:19.129542+0000 mgr.smithi073.msdoog (mgr.14182) 173 : audit [DBG] from='client.14626 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:28:21.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:28:20.065227+0000 mon.smithi073 (mon.0) 661 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:28:21.912 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:28:21.912 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z 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.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:28:22.281 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:28:23.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:22 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:28:21.009097+0000 mgr.smithi073.msdoog (mgr.14182) 174 : cluster [DBG] pgmap v139: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:28:23.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:22 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:28:21.009097+0000 mgr.smithi073.msdoog (mgr.14182) 174 : cluster [DBG] pgmap v139: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:28:23.282 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:28:23.926 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:23 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:28:21.919461+0000 mgr.smithi073.msdoog (mgr.14182) 175 : audit [DBG] from='client.14630 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:28:24.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:23 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:28:21.919461+0000 mgr.smithi073.msdoog (mgr.14182) 175 : audit [DBG] from='client.14630 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:28:24.651 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:28:24.652 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z 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.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:28:24.954 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:28:23.009860+0000 mgr.smithi073.msdoog (mgr.14182) 176 : cluster [DBG] pgmap v140: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:28:25.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:28:23.009860+0000 mgr.smithi073.msdoog (mgr.14182) 176 : cluster [DBG] pgmap v140: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:28:25.040 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:28:25.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:25 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:28:24.658547+0000 mgr.smithi073.msdoog (mgr.14182) 177 : audit [DBG] from='client.14634 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:28:26.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:25 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:28:24.658547+0000 mgr.smithi073.msdoog (mgr.14182) 177 : audit [DBG] from='client.14634 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:28:26.041 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:28:27.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:26 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:28:25.010394+0000 mgr.smithi073.msdoog (mgr.14182) 178 : cluster [DBG] pgmap v141: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-01-27T23:28:27.035 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:26 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:28:25.010394+0000 mgr.smithi073.msdoog (mgr.14182) 178 : cluster [DBG] pgmap v141: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-01-27T23:28:27.403 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:28:27.403 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z 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.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:28:27.780 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:28:28.782 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:28:29.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:28:27.011103+0000 mgr.smithi073.msdoog (mgr.14182) 179 : cluster [DBG] pgmap v142: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-01-27T23:28:29.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:28:27.409626+0000 mgr.smithi073.msdoog (mgr.14182) 180 : audit [DBG] from='client.14638 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:28:29.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:28:27.011103+0000 mgr.smithi073.msdoog (mgr.14182) 179 : cluster [DBG] pgmap v142: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-01-27T23:28:29.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:28:27.409626+0000 mgr.smithi073.msdoog (mgr.14182) 180 : audit [DBG] from='client.14638 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:28:30.140 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:28:30.141 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z 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.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:28:30.572 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:28:30.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:30 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:28:29.011701+0000 mgr.smithi073.msdoog (mgr.14182) 181 : cluster [DBG] pgmap v143: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-01-27T23:28:31.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:30 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:28:29.011701+0000 mgr.smithi073.msdoog (mgr.14182) 181 : cluster [DBG] pgmap v143: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-01-27T23:28:31.573 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:28:31.915 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:31 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:28:30.147125+0000 mgr.smithi073.msdoog (mgr.14182) 182 : audit [DBG] from='client.14642 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:28:31.971 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:31 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:28:30.147125+0000 mgr.smithi073.msdoog (mgr.14182) 182 : audit [DBG] from='client.14642 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:28:32.920 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:28:32.921 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z 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.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:28:32.947 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:32 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:28:31.012181+0000 mgr.smithi073.msdoog (mgr.14182) 183 : cluster [DBG] pgmap v144: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-01-27T23:28:33.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:32 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:28:31.012181+0000 mgr.smithi073.msdoog (mgr.14182) 183 : cluster [DBG] pgmap v144: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-01-27T23:28:33.305 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:28:34.306 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:28:35.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:34 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:28:32.927740+0000 mgr.smithi073.msdoog (mgr.14182) 184 : audit [DBG] from='client.14646 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:28:35.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:34 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:28:33.012982+0000 mgr.smithi073.msdoog (mgr.14182) 185 : cluster [DBG] pgmap v145: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 255 B/s rd, 170 B/s wr, 0 op/s 2024-01-27T23:28:35.020 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:34 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:28:32.927740+0000 mgr.smithi073.msdoog (mgr.14182) 184 : audit [DBG] from='client.14646 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:28:35.020 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:34 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:28:33.012982+0000 mgr.smithi073.msdoog (mgr.14182) 185 : cluster [DBG] pgmap v145: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 255 B/s rd, 170 B/s wr, 0 op/s 2024-01-27T23:28:35.662 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:28:35.662 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z 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.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:28:36.040 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:28:37.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:36 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:28:35.013723+0000 mgr.smithi073.msdoog (mgr.14182) 186 : cluster [DBG] pgmap v146: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-01-27T23:28:37.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:36 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:28:35.669023+0000 mgr.smithi073.msdoog (mgr.14182) 187 : audit [DBG] from='client.14650 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:28:37.042 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:28:37.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:36 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:28:35.013723+0000 mgr.smithi073.msdoog (mgr.14182) 186 : cluster [DBG] pgmap v146: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-01-27T23:28:37.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:36 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:28:35.669023+0000 mgr.smithi073.msdoog (mgr.14182) 187 : audit [DBG] from='client.14650 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:28:38.421 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:28:38.421 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z 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.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:28:38.752 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:38 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:28:37.014678+0000 mgr.smithi073.msdoog (mgr.14182) 188 : cluster [DBG] pgmap v147: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:28:38.804 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:28:39.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:38 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:28:37.014678+0000 mgr.smithi073.msdoog (mgr.14182) 188 : cluster [DBG] pgmap v147: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:28:39.805 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:28:40.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:39 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:28:38.427813+0000 mgr.smithi073.msdoog (mgr.14182) 189 : audit [DBG] from='client.14654 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:28:40.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:39 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:28:38.427813+0000 mgr.smithi073.msdoog (mgr.14182) 189 : audit [DBG] from='client.14654 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:28:40.942 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:40 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:28:39.015284+0000 mgr.smithi073.msdoog (mgr.14182) 190 : cluster [DBG] pgmap v148: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:28:41.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:40 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:28:39.015284+0000 mgr.smithi073.msdoog (mgr.14182) 190 : cluster [DBG] pgmap v148: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:28:41.295 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:28:41.296 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z 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.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:28:41.679 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:28:42.680 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:28:43.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:42 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:28:41.015903+0000 mgr.smithi073.msdoog (mgr.14182) 191 : cluster [DBG] pgmap v149: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:28:43.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:42 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:28:41.302561+0000 mgr.smithi073.msdoog (mgr.14182) 192 : audit [DBG] from='client.14658 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:28:43.013 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:42 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:28:41.015903+0000 mgr.smithi073.msdoog (mgr.14182) 191 : cluster [DBG] pgmap v149: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:28:43.013 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:42 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:28:41.302561+0000 mgr.smithi073.msdoog (mgr.14182) 192 : audit [DBG] from='client.14658 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:28:44.020 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:28:44.020 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z 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.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:28:44.394 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:28:45.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:44 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:28:43.016500+0000 mgr.smithi073.msdoog (mgr.14182) 193 : cluster [DBG] pgmap v150: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:28:45.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:28:43.016500+0000 mgr.smithi073.msdoog (mgr.14182) 193 : cluster [DBG] pgmap v150: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:28:45.395 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:28:46.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:45 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:28:44.026260+0000 mgr.smithi073.msdoog (mgr.14182) 194 : audit [DBG] from='client.14662 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:28:46.015 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:45 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:28:44.026260+0000 mgr.smithi073.msdoog (mgr.14182) 194 : audit [DBG] from='client.14662 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:28:46.721 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:28:46.722 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z 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.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:28:47.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:28:45.017153+0000 mgr.smithi073.msdoog (mgr.14182) 195 : cluster [DBG] pgmap v151: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:28:47.043 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:28:45.017153+0000 mgr.smithi073.msdoog (mgr.14182) 195 : cluster [DBG] pgmap v151: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:28:47.104 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:28:48.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:47 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:28:46.728029+0000 mgr.smithi073.msdoog (mgr.14182) 196 : audit [DBG] from='client.14666 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:28:48.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:47 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:28:46.728029+0000 mgr.smithi073.msdoog (mgr.14182) 196 : audit [DBG] from='client.14666 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:28:48.104 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:28:48.781 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:48 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:28:47.017851+0000 mgr.smithi073.msdoog (mgr.14182) 197 : cluster [DBG] pgmap v152: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:28:49.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:48 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:28:47.017851+0000 mgr.smithi073.msdoog (mgr.14182) 197 : cluster [DBG] pgmap v152: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:28:49.468 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:28:49.469 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z 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.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:28:49.853 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:28:50.854 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:28:51.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:28:49.018542+0000 mgr.smithi073.msdoog (mgr.14182) 198 : cluster [DBG] pgmap v153: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:28:51.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:28:49.475306+0000 mgr.smithi073.msdoog (mgr.14182) 199 : audit [DBG] from='client.14670 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:28:51.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:28:49.018542+0000 mgr.smithi073.msdoog (mgr.14182) 198 : cluster [DBG] pgmap v153: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:28:51.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:28:49.475306+0000 mgr.smithi073.msdoog (mgr.14182) 199 : audit [DBG] from='client.14670 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:28:52.256 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:28:52.256 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z 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.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:28:52.635 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:28:53.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:52 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:28:51.019110+0000 mgr.smithi073.msdoog (mgr.14182) 200 : cluster [DBG] pgmap v154: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:28:53.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:52 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:28:51.019110+0000 mgr.smithi073.msdoog (mgr.14182) 200 : cluster [DBG] pgmap v154: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:28:53.636 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:28:53.978 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:53 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:28:52.263028+0000 mgr.smithi073.msdoog (mgr.14182) 201 : audit [DBG] from='client.14674 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:28:54.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:53 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:28:52.263028+0000 mgr.smithi073.msdoog (mgr.14182) 201 : audit [DBG] from='client.14674 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:28:55.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:54 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:28:53.019822+0000 mgr.smithi073.msdoog (mgr.14182) 202 : cluster [DBG] pgmap v155: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:28:55.026 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:28:55.026 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z 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.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:28:55.051 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:54 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:28:53.019822+0000 mgr.smithi073.msdoog (mgr.14182) 202 : cluster [DBG] pgmap v155: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:28:55.410 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:28:56.411 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:28:57.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:56 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:28:55.020359+0000 mgr.smithi073.msdoog (mgr.14182) 203 : cluster [DBG] pgmap v156: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:28:57.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:56 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:28:55.032568+0000 mgr.smithi073.msdoog (mgr.14182) 204 : audit [DBG] from='client.14678 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:28:57.038 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:56 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:28:55.020359+0000 mgr.smithi073.msdoog (mgr.14182) 203 : cluster [DBG] pgmap v156: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:28:57.038 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:56 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:28:55.032568+0000 mgr.smithi073.msdoog (mgr.14182) 204 : audit [DBG] from='client.14678 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:28:57.742 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:28:57.742 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z 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.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:28:58.126 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:28:59.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:58 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:28:57.021060+0000 mgr.smithi073.msdoog (mgr.14182) 205 : cluster [DBG] pgmap v157: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:28:59.005 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:28:58 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:28:57.747962+0000 mgr.smithi073.msdoog (mgr.14182) 206 : audit [DBG] from='client.14682 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:28:59.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:58 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:28:57.021060+0000 mgr.smithi073.msdoog (mgr.14182) 205 : cluster [DBG] pgmap v157: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:28:59.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:28:58 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:28:57.747962+0000 mgr.smithi073.msdoog (mgr.14182) 206 : audit [DBG] from='client.14682 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:28:59.127 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:29:00.492 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:29:00.492 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z 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.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:29:00.804 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:00 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:28:59.021732+0000 mgr.smithi073.msdoog (mgr.14182) 207 : cluster [DBG] pgmap v158: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:29:00.868 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:29:01.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:00 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:28:59.021732+0000 mgr.smithi073.msdoog (mgr.14182) 207 : cluster [DBG] pgmap v158: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:29:01.869 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:29:02.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:01 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:29:00.498673+0000 mgr.smithi073.msdoog (mgr.14182) 208 : audit [DBG] from='client.14686 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:29:02.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:01 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:29:00.498673+0000 mgr.smithi073.msdoog (mgr.14182) 208 : audit [DBG] from='client.14686 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:29:02.805 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:02 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:29:01.022298+0000 mgr.smithi073.msdoog (mgr.14182) 209 : cluster [DBG] pgmap v159: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:29:03.004 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:02 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:29:01.022298+0000 mgr.smithi073.msdoog (mgr.14182) 209 : cluster [DBG] pgmap v159: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:29:03.218 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:29:03.218 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z 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.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:29:03.585 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:29:04.586 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:29:04.928 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:04 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:29:03.023132+0000 mgr.smithi073.msdoog (mgr.14182) 210 : cluster [DBG] pgmap v160: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:29:04.929 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:04 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:29:03.224738+0000 mgr.smithi073.msdoog (mgr.14182) 211 : audit [DBG] from='client.14690 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:29:05.005 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:04 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:29:03.023132+0000 mgr.smithi073.msdoog (mgr.14182) 210 : cluster [DBG] pgmap v160: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:29:05.005 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:04 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:29:03.224738+0000 mgr.smithi073.msdoog (mgr.14182) 211 : audit [DBG] from='client.14690 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:29:05.934 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:29:05.934 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z 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.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:29:06.342 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:29:07.005 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:06 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:29:05.023726+0000 mgr.smithi073.msdoog (mgr.14182) 212 : cluster [DBG] pgmap v161: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:29:07.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:06 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:29:05.023726+0000 mgr.smithi073.msdoog (mgr.14182) 212 : cluster [DBG] pgmap v161: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:29:07.342 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:29:07.979 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:07 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:29:05.940563+0000 mgr.smithi073.msdoog (mgr.14182) 213 : audit [DBG] from='client.14694 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:29:08.255 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:07 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:29:05.940563+0000 mgr.smithi073.msdoog (mgr.14182) 213 : audit [DBG] from='client.14694 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:29:08.613 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:29:08.613 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z 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.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:29:08.981 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:08 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:29:07.024478+0000 mgr.smithi073.msdoog (mgr.14182) 214 : cluster [DBG] pgmap v162: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:29:08.982 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:29:09.255 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:08 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:29:07.024478+0000 mgr.smithi073.msdoog (mgr.14182) 214 : cluster [DBG] pgmap v162: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:29:09.983 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:29:10.016 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:09 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:29:08.619233+0000 mgr.smithi073.msdoog (mgr.14182) 215 : audit [DBG] from='client.14698 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:29:10.255 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:09 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:29:08.619233+0000 mgr.smithi073.msdoog (mgr.14182) 215 : audit [DBG] from='client.14698 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:29:10.930 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:10 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:29:09.025036+0000 mgr.smithi073.msdoog (mgr.14182) 216 : cluster [DBG] pgmap v163: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:29:11.255 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:10 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:29:09.025036+0000 mgr.smithi073.msdoog (mgr.14182) 216 : cluster [DBG] pgmap v163: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:29:11.292 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:29:11.293 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z 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.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:29:11.658 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:29:12.659 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:29:13.010 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:12 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:29:11.025538+0000 mgr.smithi073.msdoog (mgr.14182) 217 : cluster [DBG] pgmap v164: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:29:13.010 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:12 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:29:11.299100+0000 mgr.smithi073.msdoog (mgr.14182) 218 : audit [DBG] from='client.14702 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:29:13.255 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:12 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:29:11.025538+0000 mgr.smithi073.msdoog (mgr.14182) 217 : cluster [DBG] pgmap v164: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:29:13.255 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:12 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:29:11.299100+0000 mgr.smithi073.msdoog (mgr.14182) 218 : audit [DBG] from='client.14702 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:29:13.992 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:29:13.992 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z 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.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:29:14.385 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:29:15.055 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:14 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:29:13.026326+0000 mgr.smithi073.msdoog (mgr.14182) 219 : cluster [DBG] pgmap v165: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:29:15.255 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:14 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:29:13.026326+0000 mgr.smithi073.msdoog (mgr.14182) 219 : cluster [DBG] pgmap v165: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:29:15.385 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:29:16.002 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:15 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:29:13.996528+0000 mgr.smithi073.msdoog (mgr.14182) 220 : audit [DBG] from='client.14706 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:29:16.255 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:15 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:29:13.996528+0000 mgr.smithi073.msdoog (mgr.14182) 220 : audit [DBG] from='client.14706 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:29:16.752 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:29:16.752 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z 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.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:29:17.055 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:29:15.026893+0000 mgr.smithi073.msdoog (mgr.14182) 221 : cluster [DBG] pgmap v166: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:29:17.132 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:29:17.256 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:29:15.026893+0000 mgr.smithi073.msdoog (mgr.14182) 221 : cluster [DBG] pgmap v166: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:29:18.055 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:17 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:29:16.757924+0000 mgr.smithi073.msdoog (mgr.14182) 222 : audit [DBG] from='client.14710 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:29:18.133 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:29:18.255 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:17 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:29:16.757924+0000 mgr.smithi073.msdoog (mgr.14182) 222 : audit [DBG] from='client.14710 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:29:19.055 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:18 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:29:17.027856+0000 mgr.smithi073.msdoog (mgr.14182) 223 : cluster [DBG] pgmap v167: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:29:19.255 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:18 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:29:17.027856+0000 mgr.smithi073.msdoog (mgr.14182) 223 : cluster [DBG] pgmap v167: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:29:19.472 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:29:19.472 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z 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.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:29:19.856 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:29:20.857 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:29:21.055 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:29:19.028438+0000 mgr.smithi073.msdoog (mgr.14182) 224 : cluster [DBG] pgmap v168: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:29:21.055 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:29:19.478494+0000 mgr.smithi073.msdoog (mgr.14182) 225 : audit [DBG] from='client.14714 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:29:21.255 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:29:19.028438+0000 mgr.smithi073.msdoog (mgr.14182) 224 : cluster [DBG] pgmap v168: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:29:21.255 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:29:19.478494+0000 mgr.smithi073.msdoog (mgr.14182) 225 : audit [DBG] from='client.14714 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:29:22.175 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:29:22.175 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z 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.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:29:22.547 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:29:23.055 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:22 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:29:21.028950+0000 mgr.smithi073.msdoog (mgr.14182) 226 : cluster [DBG] pgmap v169: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:29:23.255 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:22 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:29:21.028950+0000 mgr.smithi073.msdoog (mgr.14182) 226 : cluster [DBG] pgmap v169: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:29:23.548 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:29:23.875 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:23 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:29:22.181471+0000 mgr.smithi073.msdoog (mgr.14182) 227 : audit [DBG] from='client.14718 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:29:24.255 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:23 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:29:22.181471+0000 mgr.smithi073.msdoog (mgr.14182) 227 : audit [DBG] from='client.14718 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:29:24.827 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:29:24.828 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z 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.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:29:25.056 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:29:23.029631+0000 mgr.smithi073.msdoog (mgr.14182) 228 : cluster [DBG] pgmap v170: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:29:25.206 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:29:25.255 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:29:23.029631+0000 mgr.smithi073.msdoog (mgr.14182) 228 : cluster [DBG] pgmap v170: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:29:26.055 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:25 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:29:24.833097+0000 mgr.smithi073.msdoog (mgr.14182) 229 : audit [DBG] from='client.14722 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:29:26.055 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:25 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:29:25.030140+0000 mgr.smithi073.msdoog (mgr.14182) 230 : cluster [DBG] pgmap v171: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:29:26.207 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:29:26.255 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:25 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:29:24.833097+0000 mgr.smithi073.msdoog (mgr.14182) 229 : audit [DBG] from='client.14722 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:29:26.255 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:25 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:29:25.030140+0000 mgr.smithi073.msdoog (mgr.14182) 230 : cluster [DBG] pgmap v171: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:29:27.596 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:29:27.596 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z 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.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:29:27.964 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:29:28.305 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:29:27.030851+0000 mgr.smithi073.msdoog (mgr.14182) 231 : cluster [DBG] pgmap v172: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:29:28.305 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:29:27.601552+0000 mgr.smithi073.msdoog (mgr.14182) 232 : audit [DBG] from='client.14726 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:29:28.505 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:29:27.030851+0000 mgr.smithi073.msdoog (mgr.14182) 231 : cluster [DBG] pgmap v172: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:29:28.505 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:29:27.601552+0000 mgr.smithi073.msdoog (mgr.14182) 232 : audit [DBG] from='client.14726 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:29:28.965 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:29:30.325 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:29:30.325 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z 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.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:29:30.662 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:30 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:29:29.031448+0000 mgr.smithi073.msdoog (mgr.14182) 233 : cluster [DBG] pgmap v173: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:29:30.706 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:29:30.755 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:30 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:29:29.031448+0000 mgr.smithi073.msdoog (mgr.14182) 233 : cluster [DBG] pgmap v173: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:29:31.707 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:29:31.740 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:31 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:29:30.330951+0000 mgr.smithi073.msdoog (mgr.14182) 234 : audit [DBG] from='client.14730 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:29:31.755 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:31 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:29:30.330951+0000 mgr.smithi073.msdoog (mgr.14182) 234 : audit [DBG] from='client.14730 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:29:32.692 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:32 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:29:31.031922+0000 mgr.smithi073.msdoog (mgr.14182) 235 : cluster [DBG] pgmap v174: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:29:32.755 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:32 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:29:31.031922+0000 mgr.smithi073.msdoog (mgr.14182) 235 : cluster [DBG] pgmap v174: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:29:33.045 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:29:33.045 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z 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.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:29:33.423 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:29:34.424 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:29:34.755 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:34 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:29:33.032488+0000 mgr.smithi073.msdoog (mgr.14182) 236 : cluster [DBG] pgmap v175: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:29:34.756 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:34 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:29:33.051223+0000 mgr.smithi073.msdoog (mgr.14182) 237 : audit [DBG] from='client.14734 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:29:34.765 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:34 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:29:33.032488+0000 mgr.smithi073.msdoog (mgr.14182) 236 : cluster [DBG] pgmap v175: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:29:34.766 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:34 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:29:33.051223+0000 mgr.smithi073.msdoog (mgr.14182) 237 : audit [DBG] from='client.14734 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:29:35.731 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:29:35.731 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z 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.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:29:36.131 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:29:36.756 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:36 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:29:35.032996+0000 mgr.smithi073.msdoog (mgr.14182) 238 : cluster [DBG] pgmap v176: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:29:36.756 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:36 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:29:35.737326+0000 mgr.smithi073.msdoog (mgr.14182) 239 : audit [DBG] from='client.14738 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:29:36.805 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:36 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:29:35.032996+0000 mgr.smithi073.msdoog (mgr.14182) 238 : cluster [DBG] pgmap v176: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:29:36.805 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:36 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:29:35.737326+0000 mgr.smithi073.msdoog (mgr.14182) 239 : audit [DBG] from='client.14738 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:29:37.131 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:29:38.429 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:29:38.430 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z 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.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:29:38.755 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:38 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:29:37.033846+0000 mgr.smithi073.msdoog (mgr.14182) 240 : cluster [DBG] pgmap v177: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:29:38.761 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:38 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:29:37.033846+0000 mgr.smithi073.msdoog (mgr.14182) 240 : cluster [DBG] pgmap v177: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:29:38.804 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:29:39.755 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:39 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:29:38.434626+0000 mgr.smithi073.msdoog (mgr.14182) 241 : audit [DBG] from='client.14742 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:29:39.805 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:29:39.806 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:39 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:29:38.434626+0000 mgr.smithi073.msdoog (mgr.14182) 241 : audit [DBG] from='client.14742 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:29:40.755 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:40 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:29:39.034385+0000 mgr.smithi073.msdoog (mgr.14182) 242 : cluster [DBG] pgmap v178: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:29:40.805 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:40 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:29:39.034385+0000 mgr.smithi073.msdoog (mgr.14182) 242 : cluster [DBG] pgmap v178: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:29:41.188 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:29:41.189 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z 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.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:29:41.562 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:29:42.563 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:29:42.755 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:42 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:29:41.034875+0000 mgr.smithi073.msdoog (mgr.14182) 243 : cluster [DBG] pgmap v179: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:29:42.755 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:42 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:29:41.194393+0000 mgr.smithi073.msdoog (mgr.14182) 244 : audit [DBG] from='client.14746 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:29:42.805 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:42 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:29:41.034875+0000 mgr.smithi073.msdoog (mgr.14182) 243 : cluster [DBG] pgmap v179: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:29:42.805 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:42 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:29:41.194393+0000 mgr.smithi073.msdoog (mgr.14182) 244 : audit [DBG] from='client.14746 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:29:43.887 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:29:43.887 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z 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.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:29:44.296 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:29:44.556 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:29:43.035548+0000 mgr.smithi073.msdoog (mgr.14182) 245 : cluster [DBG] pgmap v180: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:29:44.755 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:44 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:29:43.035548+0000 mgr.smithi073.msdoog (mgr.14182) 245 : cluster [DBG] pgmap v180: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:29:45.296 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:29:45.639 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:45 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:29:43.892471+0000 mgr.smithi073.msdoog (mgr.14182) 246 : audit [DBG] from='client.14750 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:29:45.755 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:45 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:29:43.892471+0000 mgr.smithi073.msdoog (mgr.14182) 246 : audit [DBG] from='client.14750 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:29:46.666 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:29:46.667 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z 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.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:29:46.692 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:29:45.036403+0000 mgr.smithi073.msdoog (mgr.14182) 247 : cluster [DBG] pgmap v181: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:29:46.755 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:29:45.036403+0000 mgr.smithi073.msdoog (mgr.14182) 247 : cluster [DBG] pgmap v181: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:29:47.046 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:29:47.755 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:47 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:29:46.672002+0000 mgr.smithi073.msdoog (mgr.14182) 248 : audit [DBG] from='client.14754 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:29:47.805 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:47 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:29:46.672002+0000 mgr.smithi073.msdoog (mgr.14182) 248 : audit [DBG] from='client.14754 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:29:48.047 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:29:48.673 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:48 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:29:47.037167+0000 mgr.smithi073.msdoog (mgr.14182) 249 : cluster [DBG] pgmap v182: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:29:48.755 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:48 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:29:47.037167+0000 mgr.smithi073.msdoog (mgr.14182) 249 : cluster [DBG] pgmap v182: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:29:49.367 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:29:49.368 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z 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.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:29:49.745 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:29:50.745 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:29:50.755 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:29:49.037673+0000 mgr.smithi073.msdoog (mgr.14182) 250 : cluster [DBG] pgmap v183: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:29:50.755 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:29:49.373494+0000 mgr.smithi073.msdoog (mgr.14182) 251 : audit [DBG] from='client.14758 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:29:50.779 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:29:49.037673+0000 mgr.smithi073.msdoog (mgr.14182) 250 : cluster [DBG] pgmap v183: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:29:50.780 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:29:49.373494+0000 mgr.smithi073.msdoog (mgr.14182) 251 : audit [DBG] from='client.14758 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:29:52.078 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:29:52.078 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z 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.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:29:52.460 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:29:52.755 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:52 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:29:51.038324+0000 mgr.smithi073.msdoog (mgr.14182) 252 : cluster [DBG] pgmap v184: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:29:52.805 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:52 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:29:51.038324+0000 mgr.smithi073.msdoog (mgr.14182) 252 : cluster [DBG] pgmap v184: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:29:53.462 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:29:53.755 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:53 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:29:52.083731+0000 mgr.smithi073.msdoog (mgr.14182) 253 : audit [DBG] from='client.14762 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:29:53.787 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:53 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:29:52.083731+0000 mgr.smithi073.msdoog (mgr.14182) 253 : audit [DBG] from='client.14762 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:29:54.755 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:54 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:29:53.039117+0000 mgr.smithi073.msdoog (mgr.14182) 254 : cluster [DBG] pgmap v185: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:29:54.785 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:29:54.785 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z 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.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:29:54.805 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:54 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:29:53.039117+0000 mgr.smithi073.msdoog (mgr.14182) 254 : cluster [DBG] pgmap v185: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:29:55.111 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:29:55.755 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:29:54.789930+0000 mgr.smithi073.msdoog (mgr.14182) 255 : audit [DBG] from='client.14766 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:29:55.805 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:29:54.789930+0000 mgr.smithi073.msdoog (mgr.14182) 255 : audit [DBG] from='client.14766 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:29:56.112 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:29:56.755 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:56 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:29:55.039635+0000 mgr.smithi073.msdoog (mgr.14182) 256 : cluster [DBG] pgmap v186: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:29:56.755 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:56 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:29:55.039635+0000 mgr.smithi073.msdoog (mgr.14182) 256 : cluster [DBG] pgmap v186: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:29:57.450 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:29:57.450 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z 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.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:29:57.827 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:29:58.755 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:58 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:29:57.040699+0000 mgr.smithi073.msdoog (mgr.14182) 257 : cluster [DBG] pgmap v187: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:29:58.755 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:29:58 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:29:57.455065+0000 mgr.smithi073.msdoog (mgr.14182) 258 : audit [DBG] from='client.14770 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:29:58.805 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:58 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:29:57.040699+0000 mgr.smithi073.msdoog (mgr.14182) 257 : cluster [DBG] pgmap v187: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:29:58.806 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:29:58 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:29:57.455065+0000 mgr.smithi073.msdoog (mgr.14182) 258 : audit [DBG] from='client.14770 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:29:58.828 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:30:00.147 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:30:00.147 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z 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.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:30:00.521 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:30:00.805 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:00 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:29:59.041248+0000 mgr.smithi073.msdoog (mgr.14182) 259 : cluster [DBG] pgmap v188: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:30:00.806 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:00 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:30:00.000127+0000 mon.smithi073 (mon.0) 662 : cluster [INF] overall HEALTH_OK 2024-01-27T23:30:01.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:00 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:29:59.041248+0000 mgr.smithi073.msdoog (mgr.14182) 259 : cluster [DBG] pgmap v188: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:30:01.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:00 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:30:00.000127+0000 mon.smithi073 (mon.0) 662 : cluster [INF] overall HEALTH_OK 2024-01-27T23:30:01.522 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:30:01.806 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:01 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:30:00.152549+0000 mgr.smithi073.msdoog (mgr.14182) 260 : audit [DBG] from='client.14774 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:30:01.973 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:01 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:30:00.152549+0000 mgr.smithi073.msdoog (mgr.14182) 260 : audit [DBG] from='client.14774 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:30:02.806 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:02 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:30:01.041887+0000 mgr.smithi073.msdoog (mgr.14182) 261 : cluster [DBG] pgmap v189: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:30:02.850 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:30:02.850 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z 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.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:30:03.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:02 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:30:01.041887+0000 mgr.smithi073.msdoog (mgr.14182) 261 : cluster [DBG] pgmap v189: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:30:03.217 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:30:04.218 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:30:04.806 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:04 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:30:02.856244+0000 mgr.smithi073.msdoog (mgr.14182) 262 : audit [DBG] from='client.14778 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:30:04.806 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:04 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:30:03.042491+0000 mgr.smithi073.msdoog (mgr.14182) 263 : cluster [DBG] pgmap v190: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 426 B/s rd, 0 op/s 2024-01-27T23:30:05.005 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:04 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:30:02.856244+0000 mgr.smithi073.msdoog (mgr.14182) 262 : audit [DBG] from='client.14778 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:30:05.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:04 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:30:03.042491+0000 mgr.smithi073.msdoog (mgr.14182) 263 : cluster [DBG] pgmap v190: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 426 B/s rd, 0 op/s 2024-01-27T23:30:05.525 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:30:05.525 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z 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.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:30:05.892 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:30:06.806 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:06 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:30:05.043238+0000 mgr.smithi073.msdoog (mgr.14182) 264 : cluster [DBG] pgmap v191: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2024-01-27T23:30:06.806 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:06 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:30:05.530645+0000 mgr.smithi073.msdoog (mgr.14182) 265 : audit [DBG] from='client.14782 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:30:06.894 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:30:07.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:06 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:30:05.043238+0000 mgr.smithi073.msdoog (mgr.14182) 264 : cluster [DBG] pgmap v191: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2024-01-27T23:30:07.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:06 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:30:05.530645+0000 mgr.smithi073.msdoog (mgr.14182) 265 : audit [DBG] from='client.14782 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:30:08.268 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:30:08.268 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z 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.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:30:08.549 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:08 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:30:07.043993+0000 mgr.smithi073.msdoog (mgr.14182) 266 : cluster [DBG] pgmap v192: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2024-01-27T23:30:08.641 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:30:09.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:08 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:30:07.043993+0000 mgr.smithi073.msdoog (mgr.14182) 266 : cluster [DBG] pgmap v192: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2024-01-27T23:30:09.642 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:30:09.805 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:09 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:30:08.272981+0000 mgr.smithi073.msdoog (mgr.14182) 267 : audit [DBG] from='client.14786 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:30:10.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:09 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:30:08.272981+0000 mgr.smithi073.msdoog (mgr.14182) 267 : audit [DBG] from='client.14786 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:30:10.671 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:10 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:30:09.044586+0000 mgr.smithi073.msdoog (mgr.14182) 268 : cluster [DBG] pgmap v193: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2024-01-27T23:30:11.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:10 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:30:09.044586+0000 mgr.smithi073.msdoog (mgr.14182) 268 : cluster [DBG] pgmap v193: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2024-01-27T23:30:11.015 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:30:11.015 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z 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.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:30:11.392 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:30:12.392 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:30:12.759 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:12 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:30:11.021091+0000 mgr.smithi073.msdoog (mgr.14182) 269 : audit [DBG] from='client.14790 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:30:12.759 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:12 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:30:11.045201+0000 mgr.smithi073.msdoog (mgr.14182) 270 : cluster [DBG] pgmap v194: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2024-01-27T23:30:13.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:12 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:30:11.021091+0000 mgr.smithi073.msdoog (mgr.14182) 269 : audit [DBG] from='client.14790 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:30:13.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:12 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:30:11.045201+0000 mgr.smithi073.msdoog (mgr.14182) 270 : cluster [DBG] pgmap v194: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2024-01-27T23:30:13.775 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:30:13.775 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z 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.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:30:14.141 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:30:14.806 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:14 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:30:13.045907+0000 mgr.smithi073.msdoog (mgr.14182) 271 : cluster [DBG] pgmap v195: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 426 B/s rd, 0 op/s 2024-01-27T23:30:14.806 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:14 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:30:13.779773+0000 mgr.smithi073.msdoog (mgr.14182) 272 : audit [DBG] from='client.14794 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:30:15.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:14 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:30:13.045907+0000 mgr.smithi073.msdoog (mgr.14182) 271 : cluster [DBG] pgmap v195: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 426 B/s rd, 0 op/s 2024-01-27T23:30:15.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:14 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:30:13.779773+0000 mgr.smithi073.msdoog (mgr.14182) 272 : audit [DBG] from='client.14794 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:30:15.142 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:30:15.761 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:15 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:30:14.907453+0000 mon.smithi073 (mon.0) 663 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi186.zstaqw"}]: dispatch 2024-01-27T23:30:16.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:15 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:30:14.907453+0000 mon.smithi073 (mon.0) 663 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi186.zstaqw"}]: dispatch 2024-01-27T23:30:16.490 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:30:16.491 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:30:16.806 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:30:14.906934+0000 mgr.smithi073.msdoog (mgr.14182) 273 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw 2024-01-27T23:30:16.807 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw 2024-01-27T23:30:16.807 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw 2024-01-27T23:30:16.807 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw 2024-01-27T23:30:16.807 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Deploy daemon haproxy.nfs.foo.smithi186.zstaqw ... 2024-01-27T23:30:16.807 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:30:16.807 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2024-01-27T23:30:16.807 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:28:21Z" level=warning msg="Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:30:16.807 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:28:59Z" level=warning msg="Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:30:16.807 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:29:37Z" level=warning msg="Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:30:16.807 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2024-01-27T23:30:16.807 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:30:16.807 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Traceback (most recent call last): 2024-01-27T23:30:16.807 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:30:16.807 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: yield (conn, connr) 2024-01-27T23:30:16.808 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:30:16.808 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: code, '\n'.join(err))) 2024-01-27T23:30:16.808 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw 2024-01-27T23:30:16.808 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw 2024-01-27T23:30:16.808 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw 2024-01-27T23:30:16.808 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw 2024-01-27T23:30:16.808 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Deploy daemon haproxy.nfs.foo.smithi186.zstaqw ... 2024-01-27T23:30:16.808 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:30:16.808 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2024-01-27T23:30:16.808 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:28:21Z" level=warning msg="Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:30:16.808 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:28:59Z" level=warning msg="Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:30:16.808 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:29:37Z" level=warning msg="Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:30:16.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2024-01-27T23:30:16.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:30:16.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:30:14.907163+0000 mgr.smithi073.msdoog (mgr.14182) 274 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi186.zstaqw 2024-01-27T23:30:16.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:30:14.908028+0000 mgr.smithi073.msdoog (mgr.14182) 275 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw 2024-01-27T23:30:16.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw 2024-01-27T23:30:16.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw 2024-01-27T23:30:16.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw 2024-01-27T23:30:16.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Deploy daemon haproxy.nfs.foo.smithi186.zstaqw ... 2024-01-27T23:30:16.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:30:16.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2024-01-27T23:30:16.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:28:21Z" level=warning msg="Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:30:16.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:28:59Z" level=warning msg="Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:30:16.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:29:37Z" level=warning msg="Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:30:16.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2024-01-27T23:30:16.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:30:16.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:30:14.909431+0000 mgr.smithi073.msdoog (mgr.14182) 276 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi073.otqynp on smithi073 2024-01-27T23:30:16.810 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:30:15.046437+0000 mgr.smithi073.msdoog (mgr.14182) 277 : cluster [DBG] pgmap v196: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:30:16.874 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:30:17.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:30:14.906934+0000 mgr.smithi073.msdoog (mgr.14182) 273 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw 2024-01-27T23:30:17.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw 2024-01-27T23:30:17.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw 2024-01-27T23:30:17.007 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw 2024-01-27T23:30:17.007 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Deploy daemon haproxy.nfs.foo.smithi186.zstaqw ... 2024-01-27T23:30:17.007 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:30:17.007 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2024-01-27T23:30:17.007 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:28:21Z" level=warning msg="Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:30:17.007 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:28:59Z" level=warning msg="Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:30:17.007 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:29:37Z" level=warning msg="Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:30:17.007 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2024-01-27T23:30:17.007 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:30:17.007 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Traceback (most recent call last): 2024-01-27T23:30:17.007 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:30:17.007 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: yield (conn, connr) 2024-01-27T23:30:17.007 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:30:17.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: code, '\n'.join(err))) 2024-01-27T23:30:17.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw 2024-01-27T23:30:17.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw 2024-01-27T23:30:17.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw 2024-01-27T23:30:17.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw 2024-01-27T23:30:17.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Deploy daemon haproxy.nfs.foo.smithi186.zstaqw ... 2024-01-27T23:30:17.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:30:17.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2024-01-27T23:30:17.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:28:21Z" level=warning msg="Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:30:17.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:28:59Z" level=warning msg="Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:30:17.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:29:37Z" level=warning msg="Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:30:17.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2024-01-27T23:30:17.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:30:17.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:30:14.907163+0000 mgr.smithi073.msdoog (mgr.14182) 274 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi186.zstaqw 2024-01-27T23:30:17.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:30:14.908028+0000 mgr.smithi073.msdoog (mgr.14182) 275 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw 2024-01-27T23:30:17.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw 2024-01-27T23:30:17.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw 2024-01-27T23:30:17.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw 2024-01-27T23:30:17.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Deploy daemon haproxy.nfs.foo.smithi186.zstaqw ... 2024-01-27T23:30:17.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:30:17.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2024-01-27T23:30:17.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:28:21Z" level=warning msg="Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:30:17.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:28:59Z" level=warning msg="Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:30:17.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:29:37Z" level=warning msg="Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:30:17.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2024-01-27T23:30:17.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:30:17.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:30:14.909431+0000 mgr.smithi073.msdoog (mgr.14182) 276 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi073.otqynp on smithi073 2024-01-27T23:30:17.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:30:15.046437+0000 mgr.smithi073.msdoog (mgr.14182) 277 : cluster [DBG] pgmap v196: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:30:17.806 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:17 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:30:16.495324+0000 mgr.smithi073.msdoog (mgr.14182) 278 : audit [DBG] from='client.14798 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:30:17.876 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:30:18.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:17 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:30:16.495324+0000 mgr.smithi073.msdoog (mgr.14182) 278 : audit [DBG] from='client.14798 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:30:18.806 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:18 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:30:17.047228+0000 mgr.smithi073.msdoog (mgr.14182) 279 : cluster [DBG] pgmap v197: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:30:19.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:18 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:30:17.047228+0000 mgr.smithi073.msdoog (mgr.14182) 279 : cluster [DBG] pgmap v197: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:30:19.206 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:30:19.206 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:30:19.591 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:30:20.592 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:30:20.935 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:30:19.047723+0000 mgr.smithi073.msdoog (mgr.14182) 280 : cluster [DBG] pgmap v198: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:30:20.935 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:30:19.211205+0000 mgr.smithi073.msdoog (mgr.14182) 281 : audit [DBG] from='client.14802 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:30:21.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:30:19.047723+0000 mgr.smithi073.msdoog (mgr.14182) 280 : cluster [DBG] pgmap v198: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:30:21.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:30:19.211205+0000 mgr.smithi073.msdoog (mgr.14182) 281 : audit [DBG] from='client.14802 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:30:21.949 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:30:21.949 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:30:22.332 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:30:23.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:22 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:30:21.048229+0000 mgr.smithi073.msdoog (mgr.14182) 282 : cluster [DBG] pgmap v199: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:30:23.056 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:22 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:30:21.048229+0000 mgr.smithi073.msdoog (mgr.14182) 282 : cluster [DBG] pgmap v199: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:30:23.333 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:30:23.676 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:23 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:30:21.954203+0000 mgr.smithi073.msdoog (mgr.14182) 283 : audit [DBG] from='client.14806 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:30:24.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:23 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:30:21.954203+0000 mgr.smithi073.msdoog (mgr.14182) 283 : audit [DBG] from='client.14806 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:30:24.704 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:30:24.704 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:30:24.737 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:30:23.049053+0000 mgr.smithi073.msdoog (mgr.14182) 284 : cluster [DBG] pgmap v200: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:30:25.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:30:23.049053+0000 mgr.smithi073.msdoog (mgr.14182) 284 : cluster [DBG] pgmap v200: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:30:25.099 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:30:25.806 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:25 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:30:24.707248+0000 mgr.smithi073.msdoog (mgr.14182) 285 : audit [DBG] from='client.14810 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:30:26.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:25 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:30:24.707248+0000 mgr.smithi073.msdoog (mgr.14182) 285 : audit [DBG] from='client.14810 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:30:26.101 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:30:26.760 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:26 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:30:25.049715+0000 mgr.smithi073.msdoog (mgr.14182) 286 : cluster [DBG] pgmap v201: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:30:27.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:26 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:30:25.049715+0000 mgr.smithi073.msdoog (mgr.14182) 286 : cluster [DBG] pgmap v201: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:30:27.432 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:30:27.432 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:30:27.807 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:30:28.808 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:30:28.842 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:30:27.050598+0000 mgr.smithi073.msdoog (mgr.14182) 287 : cluster [DBG] pgmap v202: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:30:28.843 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:30:27.437170+0000 mgr.smithi073.msdoog (mgr.14182) 288 : audit [DBG] from='client.14814 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:30:29.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:30:27.050598+0000 mgr.smithi073.msdoog (mgr.14182) 287 : cluster [DBG] pgmap v202: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:30:29.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:30:27.437170+0000 mgr.smithi073.msdoog (mgr.14182) 288 : audit [DBG] from='client.14814 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:30:30.200 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:30:30.200 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:30:30.572 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:30:30.806 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:30 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:30:29.051147+0000 mgr.smithi073.msdoog (mgr.14182) 289 : cluster [DBG] pgmap v203: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:30:31.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:30 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:30:29.051147+0000 mgr.smithi073.msdoog (mgr.14182) 289 : cluster [DBG] pgmap v203: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:30:31.573 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:30:31.916 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:31 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:30:30.204917+0000 mgr.smithi073.msdoog (mgr.14182) 290 : audit [DBG] from='client.14818 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:30:31.974 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:31 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:30:30.204917+0000 mgr.smithi073.msdoog (mgr.14182) 290 : audit [DBG] from='client.14818 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:30:32.806 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:32 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:30:31.051594+0000 mgr.smithi073.msdoog (mgr.14182) 291 : cluster [DBG] pgmap v204: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:30:32.870 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:30:32.871 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:30:33.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:32 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:30:31.051594+0000 mgr.smithi073.msdoog (mgr.14182) 291 : cluster [DBG] pgmap v204: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:30:33.248 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:30:34.249 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:30:34.917 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:34 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:30:32.875656+0000 mgr.smithi073.msdoog (mgr.14182) 292 : audit [DBG] from='client.14822 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:30:34.917 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:34 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:30:33.052266+0000 mgr.smithi073.msdoog (mgr.14182) 293 : cluster [DBG] pgmap v205: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:30:35.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:34 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:30:32.875656+0000 mgr.smithi073.msdoog (mgr.14182) 292 : audit [DBG] from='client.14822 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:30:35.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:34 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:30:33.052266+0000 mgr.smithi073.msdoog (mgr.14182) 293 : cluster [DBG] pgmap v205: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:30:35.599 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:30:35.599 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:30:35.987 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:30:36.988 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:30:37.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:36 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:30:35.052958+0000 mgr.smithi073.msdoog (mgr.14182) 294 : cluster [DBG] pgmap v206: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:30:37.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:36 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:30:35.603885+0000 mgr.smithi073.msdoog (mgr.14182) 295 : audit [DBG] from='client.14826 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:30:37.033 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:36 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:30:35.052958+0000 mgr.smithi073.msdoog (mgr.14182) 294 : cluster [DBG] pgmap v206: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:30:37.034 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:36 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:30:35.603885+0000 mgr.smithi073.msdoog (mgr.14182) 295 : audit [DBG] from='client.14826 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:30:38.334 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:30:38.334 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:30:38.678 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:38 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:30:37.053739+0000 mgr.smithi073.msdoog (mgr.14182) 296 : cluster [DBG] pgmap v207: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:30:38.721 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:30:39.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:38 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:30:37.053739+0000 mgr.smithi073.msdoog (mgr.14182) 296 : cluster [DBG] pgmap v207: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:30:39.722 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:30:40.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:39 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:30:38.338415+0000 mgr.smithi073.msdoog (mgr.14182) 297 : audit [DBG] from='client.14830 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:30:40.048 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:39 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:30:38.338415+0000 mgr.smithi073.msdoog (mgr.14182) 297 : audit [DBG] from='client.14830 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:30:41.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:40 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:30:39.054714+0000 mgr.smithi073.msdoog (mgr.14182) 298 : cluster [DBG] pgmap v208: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:30:41.017 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:30:41.017 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:30:41.047 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:40 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:30:39.054714+0000 mgr.smithi073.msdoog (mgr.14182) 298 : cluster [DBG] pgmap v208: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:30:41.404 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:30:42.406 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:30:42.757 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:42 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:30:41.022666+0000 mgr.smithi073.msdoog (mgr.14182) 299 : audit [DBG] from='client.14834 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:30:42.757 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:42 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:30:41.055180+0000 mgr.smithi073.msdoog (mgr.14182) 300 : cluster [DBG] pgmap v209: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:30:43.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:42 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:30:41.022666+0000 mgr.smithi073.msdoog (mgr.14182) 299 : audit [DBG] from='client.14834 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:30:43.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:42 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:30:41.055180+0000 mgr.smithi073.msdoog (mgr.14182) 300 : cluster [DBG] pgmap v209: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:30:43.754 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:30:43.755 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:30:44.128 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:30:45.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:44 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:30:43.055886+0000 mgr.smithi073.msdoog (mgr.14182) 301 : cluster [DBG] pgmap v210: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:30:45.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:44 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:30:43.759369+0000 mgr.smithi073.msdoog (mgr.14182) 302 : audit [DBG] from='client.14838 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:30:45.056 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:30:43.055886+0000 mgr.smithi073.msdoog (mgr.14182) 301 : cluster [DBG] pgmap v210: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:30:45.056 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:30:43.759369+0000 mgr.smithi073.msdoog (mgr.14182) 302 : audit [DBG] from='client.14838 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:30:45.129 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:30:46.415 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:30:46.415 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:30:46.769 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:30:45.056474+0000 mgr.smithi073.msdoog (mgr.14182) 303 : cluster [DBG] pgmap v211: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:30:46.788 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:30:47.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:30:45.056474+0000 mgr.smithi073.msdoog (mgr.14182) 303 : cluster [DBG] pgmap v211: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:30:47.790 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:30:48.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:47 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:30:46.419345+0000 mgr.smithi073.msdoog (mgr.14182) 304 : audit [DBG] from='client.14842 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:30:48.056 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:47 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:30:46.419345+0000 mgr.smithi073.msdoog (mgr.14182) 304 : audit [DBG] from='client.14842 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:30:48.756 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:48 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:30:47.057104+0000 mgr.smithi073.msdoog (mgr.14182) 305 : cluster [DBG] pgmap v212: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:30:49.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:48 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:30:47.057104+0000 mgr.smithi073.msdoog (mgr.14182) 305 : cluster [DBG] pgmap v212: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:30:49.103 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:30:49.103 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:30:49.470 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:30:50.471 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:30:50.796 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:30:49.057650+0000 mgr.smithi073.msdoog (mgr.14182) 306 : cluster [DBG] pgmap v213: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:30:50.796 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:30:49.107903+0000 mgr.smithi073.msdoog (mgr.14182) 307 : audit [DBG] from='client.14846 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:30:51.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:30:49.057650+0000 mgr.smithi073.msdoog (mgr.14182) 306 : cluster [DBG] pgmap v213: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:30:51.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:30:49.107903+0000 mgr.smithi073.msdoog (mgr.14182) 307 : audit [DBG] from='client.14846 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:30:51.751 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:30:51.751 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:30:52.118 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:30:53.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:52 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:30:51.058113+0000 mgr.smithi073.msdoog (mgr.14182) 308 : cluster [DBG] pgmap v214: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:30:53.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:52 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:30:51.755576+0000 mgr.smithi073.msdoog (mgr.14182) 309 : audit [DBG] from='client.14850 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:30:53.056 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:52 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:30:51.058113+0000 mgr.smithi073.msdoog (mgr.14182) 308 : cluster [DBG] pgmap v214: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:30:53.056 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:52 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:30:51.755576+0000 mgr.smithi073.msdoog (mgr.14182) 309 : audit [DBG] from='client.14850 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:30:53.120 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:30:54.443 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:30:54.443 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:30:54.751 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:54 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:30:53.058843+0000 mgr.smithi073.msdoog (mgr.14182) 310 : cluster [DBG] pgmap v215: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 938 B/s rd, 0 op/s 2024-01-27T23:30:54.811 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:30:55.007 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:54 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:30:53.058843+0000 mgr.smithi073.msdoog (mgr.14182) 310 : cluster [DBG] pgmap v215: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 938 B/s rd, 0 op/s 2024-01-27T23:30:55.806 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:30:54.447643+0000 mgr.smithi073.msdoog (mgr.14182) 311 : audit [DBG] from='client.14854 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:30:55.812 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:30:56.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:30:54.447643+0000 mgr.smithi073.msdoog (mgr.14182) 311 : audit [DBG] from='client.14854 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:30:56.781 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:56 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:30:55.059394+0000 mgr.smithi073.msdoog (mgr.14182) 312 : cluster [DBG] pgmap v216: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 85 B/s wr, 1 op/s 2024-01-27T23:30:57.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:56 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:30:55.059394+0000 mgr.smithi073.msdoog (mgr.14182) 312 : cluster [DBG] pgmap v216: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 85 B/s wr, 1 op/s 2024-01-27T23:30:57.127 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:30:57.128 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:30:57.518 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:30:58.519 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:30:58.807 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:58 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:30:57.060062+0000 mgr.smithi073.msdoog (mgr.14182) 313 : cluster [DBG] pgmap v217: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 85 B/s wr, 1 op/s 2024-01-27T23:30:58.807 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:30:58 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:30:57.132475+0000 mgr.smithi073.msdoog (mgr.14182) 314 : audit [DBG] from='client.14858 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:30:59.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:58 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:30:57.060062+0000 mgr.smithi073.msdoog (mgr.14182) 313 : cluster [DBG] pgmap v217: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 85 B/s wr, 1 op/s 2024-01-27T23:30:59.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:30:58 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:30:57.132475+0000 mgr.smithi073.msdoog (mgr.14182) 314 : audit [DBG] from='client.14858 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:30:59.878 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:30:59.879 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:31:00.251 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:31:01.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:00 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:30:59.060556+0000 mgr.smithi073.msdoog (mgr.14182) 315 : cluster [DBG] pgmap v218: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 85 B/s wr, 1 op/s 2024-01-27T23:31:01.056 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:00 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:30:59.060556+0000 mgr.smithi073.msdoog (mgr.14182) 315 : cluster [DBG] pgmap v218: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 85 B/s wr, 1 op/s 2024-01-27T23:31:01.252 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:31:01.883 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:01 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:30:59.883254+0000 mgr.smithi073.msdoog (mgr.14182) 316 : audit [DBG] from='client.14862 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:31:01.974 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:01 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:30:59.883254+0000 mgr.smithi073.msdoog (mgr.14182) 316 : audit [DBG] from='client.14862 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:31:02.578 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:31:02.579 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:31:02.916 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:02 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:31:01.061181+0000 mgr.smithi073.msdoog (mgr.14182) 317 : cluster [DBG] pgmap v219: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 85 B/s wr, 1 op/s 2024-01-27T23:31:02.968 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:31:03.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:02 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:31:01.061181+0000 mgr.smithi073.msdoog (mgr.14182) 317 : cluster [DBG] pgmap v219: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 85 B/s wr, 1 op/s 2024-01-27T23:31:03.968 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:31:04.002 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:03 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:31:02.583009+0000 mgr.smithi073.msdoog (mgr.14182) 318 : audit [DBG] from='client.14866 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:31:04.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:03 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:31:02.583009+0000 mgr.smithi073.msdoog (mgr.14182) 318 : audit [DBG] from='client.14866 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:31:04.897 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:04 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:31:03.061995+0000 mgr.smithi073.msdoog (mgr.14182) 319 : cluster [DBG] pgmap v220: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 85 B/s wr, 1 op/s 2024-01-27T23:31:05.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:04 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:31:03.061995+0000 mgr.smithi073.msdoog (mgr.14182) 319 : cluster [DBG] pgmap v220: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 85 B/s wr, 1 op/s 2024-01-27T23:31:05.255 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:31:05.255 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:31:05.634 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:31:06.635 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:31:06.952 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:06 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:31:05.062572+0000 mgr.smithi073.msdoog (mgr.14182) 320 : cluster [DBG] pgmap v221: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 426 B/s rd, 85 B/s wr, 0 op/s 2024-01-27T23:31:06.952 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:06 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:31:05.259330+0000 mgr.smithi073.msdoog (mgr.14182) 321 : audit [DBG] from='client.14870 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:31:07.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:06 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:31:05.062572+0000 mgr.smithi073.msdoog (mgr.14182) 320 : cluster [DBG] pgmap v221: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 426 B/s rd, 85 B/s wr, 0 op/s 2024-01-27T23:31:07.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:06 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:31:05.259330+0000 mgr.smithi073.msdoog (mgr.14182) 321 : audit [DBG] from='client.14870 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:31:07.949 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:31:07.949 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:31:08.326 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:31:09.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:08 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:31:07.063325+0000 mgr.smithi073.msdoog (mgr.14182) 322 : cluster [DBG] pgmap v222: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:31:09.056 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:08 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:31:07.063325+0000 mgr.smithi073.msdoog (mgr.14182) 322 : cluster [DBG] pgmap v222: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:31:09.327 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:31:09.954 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:09 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:31:07.953441+0000 mgr.smithi073.msdoog (mgr.14182) 323 : audit [DBG] from='client.14874 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:31:10.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:09 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:31:07.953441+0000 mgr.smithi073.msdoog (mgr.14182) 323 : audit [DBG] from='client.14874 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:31:10.666 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:31:10.666 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:31:11.007 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:10 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:31:09.064008+0000 mgr.smithi073.msdoog (mgr.14182) 324 : cluster [DBG] pgmap v223: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:31:11.007 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:10 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:31:09.064008+0000 mgr.smithi073.msdoog (mgr.14182) 324 : cluster [DBG] pgmap v223: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:31:11.050 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:31:11.974 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:11 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:31:10.670537+0000 mgr.smithi073.msdoog (mgr.14182) 325 : audit [DBG] from='client.14878 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:31:12.051 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:31:12.056 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:11 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:31:10.670537+0000 mgr.smithi073.msdoog (mgr.14182) 325 : audit [DBG] from='client.14878 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:31:13.004 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:12 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:31:11.064505+0000 mgr.smithi073.msdoog (mgr.14182) 326 : cluster [DBG] pgmap v224: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:31:13.006 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:12 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:31:11.064505+0000 mgr.smithi073.msdoog (mgr.14182) 326 : cluster [DBG] pgmap v224: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:31:13.359 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:31:13.359 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:31:13.734 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:31:14.735 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:31:15.007 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:14 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:31:13.065202+0000 mgr.smithi073.msdoog (mgr.14182) 327 : cluster [DBG] pgmap v225: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:31:15.007 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:14 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:31:13.364087+0000 mgr.smithi073.msdoog (mgr.14182) 328 : audit [DBG] from='client.14882 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:31:15.057 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:14 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:31:13.065202+0000 mgr.smithi073.msdoog (mgr.14182) 327 : cluster [DBG] pgmap v225: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:31:15.057 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:14 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:31:13.364087+0000 mgr.smithi073.msdoog (mgr.14182) 328 : audit [DBG] from='client.14882 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:31:16.093 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:31:16.094 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:31:16.466 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:31:17.007 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:31:15.065722+0000 mgr.smithi073.msdoog (mgr.14182) 329 : cluster [DBG] pgmap v226: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:31:17.056 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:31:15.065722+0000 mgr.smithi073.msdoog (mgr.14182) 329 : cluster [DBG] pgmap v226: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:31:17.467 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:31:17.807 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:17 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:31:16.097935+0000 mgr.smithi073.msdoog (mgr.14182) 330 : audit [DBG] from='client.14886 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:31:18.007 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:17 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:31:16.097935+0000 mgr.smithi073.msdoog (mgr.14182) 330 : audit [DBG] from='client.14886 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:31:18.806 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:18 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:31:17.066607+0000 mgr.smithi073.msdoog (mgr.14182) 331 : cluster [DBG] pgmap v227: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:31:18.833 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:31:18.833 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:31:19.007 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:18 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:31:17.066607+0000 mgr.smithi073.msdoog (mgr.14182) 331 : cluster [DBG] pgmap v227: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:31:19.206 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:31:20.207 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:31:20.807 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:31:18.837859+0000 mgr.smithi073.msdoog (mgr.14182) 332 : audit [DBG] from='client.14890 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:31:20.807 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:31:19.067335+0000 mgr.smithi073.msdoog (mgr.14182) 333 : cluster [DBG] pgmap v228: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:31:21.007 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:31:18.837859+0000 mgr.smithi073.msdoog (mgr.14182) 332 : audit [DBG] from='client.14890 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:31:21.007 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:31:19.067335+0000 mgr.smithi073.msdoog (mgr.14182) 333 : cluster [DBG] pgmap v228: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:31:21.580 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:31:21.580 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:31:21.990 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:31:22.991 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:31:23.007 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:22 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:31:21.067793+0000 mgr.smithi073.msdoog (mgr.14182) 334 : cluster [DBG] pgmap v229: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:31:23.007 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:22 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:31:21.584415+0000 mgr.smithi073.msdoog (mgr.14182) 335 : audit [DBG] from='client.14894 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:31:23.024 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:22 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:31:21.067793+0000 mgr.smithi073.msdoog (mgr.14182) 334 : cluster [DBG] pgmap v229: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:31:23.024 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:22 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:31:21.584415+0000 mgr.smithi073.msdoog (mgr.14182) 335 : audit [DBG] from='client.14894 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:31:24.385 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:31:24.385 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:31:24.773 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:31:25.007 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:31:23.068514+0000 mgr.smithi073.msdoog (mgr.14182) 336 : cluster [DBG] pgmap v230: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:31:25.056 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:31:23.068514+0000 mgr.smithi073.msdoog (mgr.14182) 336 : cluster [DBG] pgmap v230: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:31:25.774 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:31:26.007 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:25 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:31:24.387961+0000 mgr.smithi073.msdoog (mgr.14182) 337 : audit [DBG] from='client.14898 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:31:26.057 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:25 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:31:24.387961+0000 mgr.smithi073.msdoog (mgr.14182) 337 : audit [DBG] from='client.14898 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:31:27.007 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:26 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:31:25.069130+0000 mgr.smithi073.msdoog (mgr.14182) 338 : cluster [DBG] pgmap v231: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:31:27.057 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:26 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:31:25.069130+0000 mgr.smithi073.msdoog (mgr.14182) 338 : cluster [DBG] pgmap v231: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:31:27.116 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:31:27.116 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:31:27.498 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:31:28.499 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:31:28.807 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:31:27.069847+0000 mgr.smithi073.msdoog (mgr.14182) 339 : cluster [DBG] pgmap v232: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:31:28.807 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:31:27.120669+0000 mgr.smithi073.msdoog (mgr.14182) 340 : audit [DBG] from='client.14902 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:31:29.007 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:31:27.069847+0000 mgr.smithi073.msdoog (mgr.14182) 339 : cluster [DBG] pgmap v232: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:31:29.007 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:31:27.120669+0000 mgr.smithi073.msdoog (mgr.14182) 340 : audit [DBG] from='client.14902 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:31:29.931 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:31:29.931 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:31:30.323 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:31:31.007 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:30 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:31:29.070353+0000 mgr.smithi073.msdoog (mgr.14182) 341 : cluster [DBG] pgmap v233: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:31:31.057 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:30 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:31:29.070353+0000 mgr.smithi073.msdoog (mgr.14182) 341 : cluster [DBG] pgmap v233: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:31:31.324 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:31:31.959 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:31 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:31:29.934683+0000 mgr.smithi073.msdoog (mgr.14182) 342 : audit [DBG] from='client.14906 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:31:32.007 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:31 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:31:29.934683+0000 mgr.smithi073.msdoog (mgr.14182) 342 : audit [DBG] from='client.14906 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:31:32.659 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:31:32.659 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:31:32.971 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:32 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:31:31.070927+0000 mgr.smithi073.msdoog (mgr.14182) 343 : cluster [DBG] pgmap v234: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:31:33.007 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:32 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:31:31.070927+0000 mgr.smithi073.msdoog (mgr.14182) 343 : cluster [DBG] pgmap v234: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:31:33.049 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:31:34.007 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:33 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:31:32.663550+0000 mgr.smithi073.msdoog (mgr.14182) 344 : audit [DBG] from='client.14910 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:31:34.049 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:31:34.056 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:33 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:31:32.663550+0000 mgr.smithi073.msdoog (mgr.14182) 344 : audit [DBG] from='client.14910 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:31:35.007 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:34 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:31:33.071533+0000 mgr.smithi073.msdoog (mgr.14182) 345 : cluster [DBG] pgmap v235: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:31:35.057 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:34 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:31:33.071533+0000 mgr.smithi073.msdoog (mgr.14182) 345 : cluster [DBG] pgmap v235: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:31:35.444 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:31:35.445 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:31:35.821 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:31:36.822 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:31:37.007 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:36 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:31:35.072150+0000 mgr.smithi073.msdoog (mgr.14182) 346 : cluster [DBG] pgmap v236: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:31:37.007 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:36 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:31:35.448697+0000 mgr.smithi073.msdoog (mgr.14182) 347 : audit [DBG] from='client.14914 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:31:37.057 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:36 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:31:35.072150+0000 mgr.smithi073.msdoog (mgr.14182) 346 : cluster [DBG] pgmap v236: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:31:37.057 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:36 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:31:35.448697+0000 mgr.smithi073.msdoog (mgr.14182) 347 : audit [DBG] from='client.14914 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:31:38.139 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:31:38.140 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:31:38.512 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:31:39.007 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:38 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:31:37.072880+0000 mgr.smithi073.msdoog (mgr.14182) 348 : cluster [DBG] pgmap v237: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:31:39.057 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:38 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:31:37.072880+0000 mgr.smithi073.msdoog (mgr.14182) 348 : cluster [DBG] pgmap v237: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:31:39.512 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:31:39.807 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:39 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:31:38.143538+0000 mgr.smithi073.msdoog (mgr.14182) 349 : audit [DBG] from='client.14918 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:31:40.007 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:39 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:31:38.143538+0000 mgr.smithi073.msdoog (mgr.14182) 349 : audit [DBG] from='client.14918 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:31:40.806 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:31:40.806 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:31:41.007 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:40 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:31:39.073490+0000 mgr.smithi073.msdoog (mgr.14182) 350 : cluster [DBG] pgmap v238: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:31:41.057 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:40 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:31:39.073490+0000 mgr.smithi073.msdoog (mgr.14182) 350 : cluster [DBG] pgmap v238: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:31:41.187 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:31:42.057 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:41 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:31:40.809988+0000 mgr.smithi073.msdoog (mgr.14182) 351 : audit [DBG] from='client.14922 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:31:42.188 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:31:42.257 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:41 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:31:40.809988+0000 mgr.smithi073.msdoog (mgr.14182) 351 : audit [DBG] from='client.14922 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:31:43.027 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:42 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:31:41.074153+0000 mgr.smithi073.msdoog (mgr.14182) 352 : cluster [DBG] pgmap v239: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:31:43.257 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:42 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:31:41.074153+0000 mgr.smithi073.msdoog (mgr.14182) 352 : cluster [DBG] pgmap v239: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:31:43.553 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:31:43.553 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:31:43.920 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:31:44.922 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:31:45.057 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:31:43.074809+0000 mgr.smithi073.msdoog (mgr.14182) 353 : cluster [DBG] pgmap v240: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:31:45.057 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:31:43.556217+0000 mgr.smithi073.msdoog (mgr.14182) 354 : audit [DBG] from='client.14926 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:31:45.257 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:44 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:31:43.074809+0000 mgr.smithi073.msdoog (mgr.14182) 353 : cluster [DBG] pgmap v240: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:31:45.257 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:44 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:31:43.556217+0000 mgr.smithi073.msdoog (mgr.14182) 354 : audit [DBG] from='client.14926 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:31:46.327 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:31:46.327 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:31:46.714 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:31:47.057 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:31:45.075299+0000 mgr.smithi073.msdoog (mgr.14182) 355 : cluster [DBG] pgmap v241: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:31:47.257 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:31:45.075299+0000 mgr.smithi073.msdoog (mgr.14182) 355 : cluster [DBG] pgmap v241: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:31:47.715 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:31:48.030 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:47 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:31:46.331050+0000 mgr.smithi073.msdoog (mgr.14182) 356 : audit [DBG] from='client.14930 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:31:48.257 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:47 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:31:46.331050+0000 mgr.smithi073.msdoog (mgr.14182) 356 : audit [DBG] from='client.14930 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:31:49.003 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:31:49.003 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:31:49.024 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:48 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:31:47.076000+0000 mgr.smithi073.msdoog (mgr.14182) 357 : cluster [DBG] pgmap v242: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:31:49.257 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:48 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:31:47.076000+0000 mgr.smithi073.msdoog (mgr.14182) 357 : cluster [DBG] pgmap v242: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:31:49.370 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:31:50.371 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:31:51.049 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:31:49.007061+0000 mgr.smithi073.msdoog (mgr.14182) 358 : audit [DBG] from='client.14934 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:31:51.049 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:31:49.076792+0000 mgr.smithi073.msdoog (mgr.14182) 359 : cluster [DBG] pgmap v243: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:31:51.257 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:31:49.007061+0000 mgr.smithi073.msdoog (mgr.14182) 358 : audit [DBG] from='client.14934 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:31:51.257 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:31:49.076792+0000 mgr.smithi073.msdoog (mgr.14182) 359 : cluster [DBG] pgmap v243: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:31:51.706 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:31:51.706 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:31:52.094 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:31:53.057 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:52 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:31:51.077265+0000 mgr.smithi073.msdoog (mgr.14182) 360 : cluster [DBG] pgmap v244: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:31:53.057 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:52 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:31:51.709554+0000 mgr.smithi073.msdoog (mgr.14182) 361 : audit [DBG] from='client.14938 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:31:53.095 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:31:53.257 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:52 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:31:51.077265+0000 mgr.smithi073.msdoog (mgr.14182) 360 : cluster [DBG] pgmap v244: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:31:53.257 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:52 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:31:51.709554+0000 mgr.smithi073.msdoog (mgr.14182) 361 : audit [DBG] from='client.14938 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:31:54.402 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:31:54.403 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:31:54.788 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:31:55.057 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:54 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:31:53.077960+0000 mgr.smithi073.msdoog (mgr.14182) 362 : cluster [DBG] pgmap v245: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:31:55.257 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:54 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:31:53.077960+0000 mgr.smithi073.msdoog (mgr.14182) 362 : cluster [DBG] pgmap v245: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:31:55.789 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:31:56.057 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:31:54.405344+0000 mgr.smithi073.msdoog (mgr.14182) 363 : audit [DBG] from='client.14942 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:31:56.257 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:31:54.405344+0000 mgr.smithi073.msdoog (mgr.14182) 363 : audit [DBG] from='client.14942 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:31:57.058 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:56 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:31:55.078474+0000 mgr.smithi073.msdoog (mgr.14182) 364 : cluster [DBG] pgmap v246: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:31:57.116 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:31:57.116 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:31:57.257 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:56 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:31:55.078474+0000 mgr.smithi073.msdoog (mgr.14182) 364 : cluster [DBG] pgmap v246: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:31:57.496 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:31:58.497 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:31:59.057 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:58 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:31:57.079162+0000 mgr.smithi073.msdoog (mgr.14182) 365 : cluster [DBG] pgmap v247: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:31:59.057 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:31:58 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:31:57.119695+0000 mgr.smithi073.msdoog (mgr.14182) 366 : audit [DBG] from='client.14946 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:31:59.257 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:58 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:31:57.079162+0000 mgr.smithi073.msdoog (mgr.14182) 365 : cluster [DBG] pgmap v247: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:31:59.257 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:31:58 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:31:57.119695+0000 mgr.smithi073.msdoog (mgr.14182) 366 : audit [DBG] from='client.14946 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:31:59.788 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:31:59.788 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:32:00.177 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:32:01.057 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:00 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:31:59.079764+0000 mgr.smithi073.msdoog (mgr.14182) 367 : cluster [DBG] pgmap v248: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:32:01.057 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:00 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:31:59.792249+0000 mgr.smithi073.msdoog (mgr.14182) 368 : audit [DBG] from='client.14950 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:32:01.179 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:32:01.257 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:00 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:31:59.079764+0000 mgr.smithi073.msdoog (mgr.14182) 367 : cluster [DBG] pgmap v248: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:32:01.257 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:00 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:31:59.792249+0000 mgr.smithi073.msdoog (mgr.14182) 368 : audit [DBG] from='client.14950 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:32:02.509 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:32:02.510 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:32:02.884 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:32:03.057 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:02 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:32:01.080635+0000 mgr.smithi073.msdoog (mgr.14182) 369 : cluster [DBG] pgmap v249: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:32:03.257 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:02 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:32:01.080635+0000 mgr.smithi073.msdoog (mgr.14182) 369 : cluster [DBG] pgmap v249: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:32:03.884 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:32:04.057 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:03 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:32:02.513339+0000 mgr.smithi073.msdoog (mgr.14182) 370 : audit [DBG] from='client.14954 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:32:04.259 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:03 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:32:02.513339+0000 mgr.smithi073.msdoog (mgr.14182) 370 : audit [DBG] from='client.14954 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:32:05.192 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:32:05.192 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:32:05.221 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:04 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:32:03.081299+0000 mgr.smithi073.msdoog (mgr.14182) 371 : cluster [DBG] pgmap v250: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:32:05.257 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:04 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:32:03.081299+0000 mgr.smithi073.msdoog (mgr.14182) 371 : cluster [DBG] pgmap v250: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:32:05.609 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:32:06.610 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:32:06.936 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:06 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:32:05.081819+0000 mgr.smithi073.msdoog (mgr.14182) 372 : cluster [DBG] pgmap v251: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:32:06.936 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:06 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:32:05.196234+0000 mgr.smithi073.msdoog (mgr.14182) 373 : audit [DBG] from='client.14958 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:32:07.257 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:06 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:32:05.081819+0000 mgr.smithi073.msdoog (mgr.14182) 372 : cluster [DBG] pgmap v251: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:32:07.257 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:06 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:32:05.196234+0000 mgr.smithi073.msdoog (mgr.14182) 373 : audit [DBG] from='client.14958 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:32:07.901 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:32:07.901 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:32:08.276 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:32:09.257 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:08 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:32:07.082499+0000 mgr.smithi073.msdoog (mgr.14182) 374 : cluster [DBG] pgmap v252: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:32:09.277 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:32:09.307 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:08 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:32:07.082499+0000 mgr.smithi073.msdoog (mgr.14182) 374 : cluster [DBG] pgmap v252: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:32:09.929 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:09 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:32:07.904974+0000 mgr.smithi073.msdoog (mgr.14182) 375 : audit [DBG] from='client.14962 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:32:10.257 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:09 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:32:07.904974+0000 mgr.smithi073.msdoog (mgr.14182) 375 : audit [DBG] from='client.14962 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:32:10.594 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:32:10.594 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:32:10.907 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:10 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:32:09.083339+0000 mgr.smithi073.msdoog (mgr.14182) 376 : cluster [DBG] pgmap v253: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:32:10.907 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:10 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:32:10.597388+0000 mgr.smithi073.msdoog (mgr.14182) 377 : audit [DBG] from='client.14966 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:32:10.925 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:32:11.257 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:10 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:32:09.083339+0000 mgr.smithi073.msdoog (mgr.14182) 376 : cluster [DBG] pgmap v253: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:32:11.257 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:10 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:32:10.597388+0000 mgr.smithi073.msdoog (mgr.14182) 377 : audit [DBG] from='client.14966 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:32:11.926 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:32:12.257 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:11 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:32:11.083839+0000 mgr.smithi073.msdoog (mgr.14182) 378 : cluster [DBG] pgmap v254: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:32:12.259 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:11 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:32:11.083839+0000 mgr.smithi073.msdoog (mgr.14182) 378 : cluster [DBG] pgmap v254: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:32:13.263 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:32:13.263 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:32:13.651 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:32:14.507 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:14 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:32:13.084482+0000 mgr.smithi073.msdoog (mgr.14182) 379 : cluster [DBG] pgmap v255: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:32:14.507 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:14 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:32:13.266839+0000 mgr.smithi073.msdoog (mgr.14182) 380 : audit [DBG] from='client.14970 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:32:14.557 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:14 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:32:13.084482+0000 mgr.smithi073.msdoog (mgr.14182) 379 : cluster [DBG] pgmap v255: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:32:14.558 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:14 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:32:13.266839+0000 mgr.smithi073.msdoog (mgr.14182) 380 : audit [DBG] from='client.14970 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:32:14.651 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:32:15.990 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:32:15.990 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:32:16.375 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:32:16.557 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:32:15.085029+0000 mgr.smithi073.msdoog (mgr.14182) 381 : cluster [DBG] pgmap v256: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:32:16.757 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:32:15.085029+0000 mgr.smithi073.msdoog (mgr.14182) 381 : cluster [DBG] pgmap v256: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:32:17.376 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:32:17.726 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:17 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:32:15.993853+0000 mgr.smithi073.msdoog (mgr.14182) 382 : audit [DBG] from='client.14974 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:32:17.757 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:17 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:32:15.993853+0000 mgr.smithi073.msdoog (mgr.14182) 382 : audit [DBG] from='client.14974 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:32:18.733 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:32:18.733 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:32:18.756 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:18 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:32:17.085887+0000 mgr.smithi073.msdoog (mgr.14182) 383 : cluster [DBG] pgmap v257: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:32:18.757 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:18 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:32:17.085887+0000 mgr.smithi073.msdoog (mgr.14182) 383 : cluster [DBG] pgmap v257: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:32:19.134 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:32:19.757 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:19 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:32:18.737117+0000 mgr.smithi073.msdoog (mgr.14182) 384 : audit [DBG] from='client.14978 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:32:19.807 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:19 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:32:18.737117+0000 mgr.smithi073.msdoog (mgr.14182) 384 : audit [DBG] from='client.14978 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:32:20.135 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:32:20.757 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:32:19.086471+0000 mgr.smithi073.msdoog (mgr.14182) 385 : cluster [DBG] pgmap v258: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:32:20.808 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:32:19.086471+0000 mgr.smithi073.msdoog (mgr.14182) 385 : cluster [DBG] pgmap v258: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:32:21.491 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:32:21.491 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:32:21.867 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:32:22.758 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:22 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:32:21.086927+0000 mgr.smithi073.msdoog (mgr.14182) 386 : cluster [DBG] pgmap v259: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:32:22.758 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:22 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:32:21.494871+0000 mgr.smithi073.msdoog (mgr.14182) 387 : audit [DBG] from='client.14982 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:32:22.807 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:22 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:32:21.086927+0000 mgr.smithi073.msdoog (mgr.14182) 386 : cluster [DBG] pgmap v259: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:32:22.808 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:22 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:32:21.494871+0000 mgr.smithi073.msdoog (mgr.14182) 387 : audit [DBG] from='client.14982 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:32:22.868 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:32:24.171 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:32:24.172 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:32:24.541 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:32:24.807 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:32:23.087597+0000 mgr.smithi073.msdoog (mgr.14182) 388 : cluster [DBG] pgmap v260: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:32:25.007 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:32:23.087597+0000 mgr.smithi073.msdoog (mgr.14182) 388 : cluster [DBG] pgmap v260: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:32:25.542 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:32:25.807 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:25 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:32:24.174735+0000 mgr.smithi073.msdoog (mgr.14182) 389 : audit [DBG] from='client.14986 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:32:26.007 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:25 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:32:24.174735+0000 mgr.smithi073.msdoog (mgr.14182) 389 : audit [DBG] from='client.14986 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:32:26.808 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:26 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:32:25.088218+0000 mgr.smithi073.msdoog (mgr.14182) 390 : cluster [DBG] pgmap v261: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:32:26.881 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:32:26.881 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:32:27.007 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:26 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:32:25.088218+0000 mgr.smithi073.msdoog (mgr.14182) 390 : cluster [DBG] pgmap v261: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:32:27.256 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:32:28.257 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:32:28.558 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:32:26.884637+0000 mgr.smithi073.msdoog (mgr.14182) 391 : audit [DBG] from='client.14990 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:32:28.558 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:32:27.089115+0000 mgr.smithi073.msdoog (mgr.14182) 392 : cluster [DBG] pgmap v262: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:32:29.007 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:32:26.884637+0000 mgr.smithi073.msdoog (mgr.14182) 391 : audit [DBG] from='client.14990 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:32:29.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:32:27.089115+0000 mgr.smithi073.msdoog (mgr.14182) 392 : cluster [DBG] pgmap v262: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:32:29.634 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:32:29.634 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:32:29.997 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:32:30.807 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:30 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:32:29.089771+0000 mgr.smithi073.msdoog (mgr.14182) 393 : cluster [DBG] pgmap v263: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:32:30.808 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:30 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:32:29.637092+0000 mgr.smithi073.msdoog (mgr.14182) 394 : audit [DBG] from='client.14994 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:32:30.998 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:32:31.007 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:30 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:32:29.089771+0000 mgr.smithi073.msdoog (mgr.14182) 393 : cluster [DBG] pgmap v263: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:32:31.007 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:30 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:32:29.637092+0000 mgr.smithi073.msdoog (mgr.14182) 394 : audit [DBG] from='client.14994 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:32:32.369 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:32:32.369 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:32:32.728 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:32 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:32:31.090269+0000 mgr.smithi073.msdoog (mgr.14182) 395 : cluster [DBG] pgmap v264: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:32:32.797 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:32:33.007 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:32 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:32:31.090269+0000 mgr.smithi073.msdoog (mgr.14182) 395 : cluster [DBG] pgmap v264: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:32:33.798 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:32:33.807 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:33 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:32:32.372556+0000 mgr.smithi073.msdoog (mgr.14182) 396 : audit [DBG] from='client.14998 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:32:34.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:33 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:32:32.372556+0000 mgr.smithi073.msdoog (mgr.14182) 396 : audit [DBG] from='client.14998 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:32:34.800 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:34 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:32:33.091131+0000 mgr.smithi073.msdoog (mgr.14182) 397 : cluster [DBG] pgmap v265: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:32:35.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:34 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:32:33.091131+0000 mgr.smithi073.msdoog (mgr.14182) 397 : cluster [DBG] pgmap v265: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:32:35.166 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:32:35.167 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:32:35.548 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:32:36.549 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:32:36.808 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:36 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:32:35.091661+0000 mgr.smithi073.msdoog (mgr.14182) 398 : cluster [DBG] pgmap v266: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:32:36.808 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:36 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:32:35.170224+0000 mgr.smithi073.msdoog (mgr.14182) 399 : audit [DBG] from='client.15002 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:32:37.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:36 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:32:35.091661+0000 mgr.smithi073.msdoog (mgr.14182) 398 : cluster [DBG] pgmap v266: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:32:37.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:36 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:32:35.170224+0000 mgr.smithi073.msdoog (mgr.14182) 399 : audit [DBG] from='client.15002 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:32:37.891 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:32:37.891 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:32:38.270 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:32:38.808 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:38 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:32:37.092538+0000 mgr.smithi073.msdoog (mgr.14182) 400 : cluster [DBG] pgmap v267: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:32:39.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:38 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:32:37.092538+0000 mgr.smithi073.msdoog (mgr.14182) 400 : cluster [DBG] pgmap v267: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:32:39.271 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:32:39.558 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:39 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:32:37.894034+0000 mgr.smithi073.msdoog (mgr.14182) 401 : audit [DBG] from='client.15006 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:32:40.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:39 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:32:37.894034+0000 mgr.smithi073.msdoog (mgr.14182) 401 : audit [DBG] from='client.15006 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:32:40.565 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:32:40.565 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:32:40.807 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:40 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:32:39.093279+0000 mgr.smithi073.msdoog (mgr.14182) 402 : cluster [DBG] pgmap v268: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:32:40.938 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:32:41.007 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:40 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:32:39.093279+0000 mgr.smithi073.msdoog (mgr.14182) 402 : cluster [DBG] pgmap v268: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:32:41.808 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:41 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:32:40.568222+0000 mgr.smithi073.msdoog (mgr.14182) 403 : audit [DBG] from='client.15010 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:32:41.939 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:32:41.975 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:41 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:32:40.568222+0000 mgr.smithi073.msdoog (mgr.14182) 403 : audit [DBG] from='client.15010 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:32:42.807 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:42 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:32:41.093780+0000 mgr.smithi073.msdoog (mgr.14182) 404 : cluster [DBG] pgmap v269: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:32:43.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:42 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:32:41.093780+0000 mgr.smithi073.msdoog (mgr.14182) 404 : cluster [DBG] pgmap v269: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:32:43.279 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:32:43.279 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:32:43.662 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:32:44.663 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:32:44.808 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:32:43.094432+0000 mgr.smithi073.msdoog (mgr.14182) 405 : cluster [DBG] pgmap v270: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:32:44.808 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:32:43.281652+0000 mgr.smithi073.msdoog (mgr.14182) 406 : audit [DBG] from='client.15014 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:32:45.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:44 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:32:43.094432+0000 mgr.smithi073.msdoog (mgr.14182) 405 : cluster [DBG] pgmap v270: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:32:45.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:44 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:32:43.281652+0000 mgr.smithi073.msdoog (mgr.14182) 406 : audit [DBG] from='client.15014 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:32:45.783 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:45 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:32:44.956932+0000 mon.smithi073 (mon.0) 664 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi073.otqynp"}]: dispatch 2024-01-27T23:32:45.783 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:45 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:32:44.961886+0000 mon.smithi073 (mon.0) 665 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:32:45.783 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:45 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:32:44.963936+0000 mon.smithi073 (mon.0) 666 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:32:45.783 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:45 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:32:45.165609+0000 mon.smithi073 (mon.0) 667 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:32:46.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:45 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:32:44.956932+0000 mon.smithi073 (mon.0) 664 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi073.otqynp"}]: dispatch 2024-01-27T23:32:46.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:45 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:32:44.961886+0000 mon.smithi073 (mon.0) 665 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:32:46.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:45 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:32:44.963936+0000 mon.smithi073 (mon.0) 666 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:32:46.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:45 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:32:45.165609+0000 mon.smithi073 (mon.0) 667 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:32:46.279 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:32:46.280 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:27:36.332956Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:27:34.364823Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:27:36.333083Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:27:34.364962Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:27:34.365032Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:27:34.365096Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:27:34.365158Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:27:36.333204Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "ports": [8800], "running": 0, "size": 2}}] 2024-01-27T23:32:46.707 INFO:tasks.cephadm:nfs.foo has 0/1 2024-01-27T23:32:47.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:32:44.956465+0000 mgr.smithi073.msdoog (mgr.14182) 407 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp 2024-01-27T23:32:47.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp 2024-01-27T23:32:47.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp 2024-01-27T23:32:47.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp 2024-01-27T23:32:47.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Deploy daemon haproxy.nfs.foo.smithi073.otqynp ... 2024-01-27T23:32:47.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:32:47.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2024-01-27T23:32:47.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:30:51Z" level=warning msg="Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:32:47.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:31:29Z" level=warning msg="Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:32:47.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:32:07Z" level=warning msg="Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:32:47.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2024-01-27T23:32:47.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:32:47.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Traceback (most recent call last): 2024-01-27T23:32:47.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:32:47.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: yield (conn, connr) 2024-01-27T23:32:47.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:32:47.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: code, '\n'.join(err))) 2024-01-27T23:32:47.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp 2024-01-27T23:32:47.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp 2024-01-27T23:32:47.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp 2024-01-27T23:32:47.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp 2024-01-27T23:32:47.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Deploy daemon haproxy.nfs.foo.smithi073.otqynp ... 2024-01-27T23:32:47.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:32:47.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2024-01-27T23:32:47.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:30:51Z" level=warning msg="Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:32:47.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:31:29Z" level=warning msg="Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:32:47.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:32:07Z" level=warning msg="Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:32:47.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2024-01-27T23:32:47.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:32:47.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:32:44.956616+0000 mgr.smithi073.msdoog (mgr.14182) 408 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi073.otqynp 2024-01-27T23:32:47.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:32:44.957689+0000 mgr.smithi073.msdoog (mgr.14182) 409 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp 2024-01-27T23:32:47.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp 2024-01-27T23:32:47.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp 2024-01-27T23:32:47.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp 2024-01-27T23:32:47.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Deploy daemon haproxy.nfs.foo.smithi073.otqynp ... 2024-01-27T23:32:47.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:32:47.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2024-01-27T23:32:47.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:30:51Z" level=warning msg="Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:32:47.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:31:29Z" level=warning msg="Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:32:47.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:32:07Z" level=warning msg="Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:32:47.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2024-01-27T23:32:47.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:32:47.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:32:44.962125+0000 mgr.smithi073.msdoog (mgr.14182) 410 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:32:47.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:32:44.963178+0000 mgr.smithi073.msdoog (mgr.14182) 411 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:32:47.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:32:44.964087+0000 mgr.smithi073.msdoog (mgr.14182) 412 : cluster [DBG] pgmap v271: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-27T23:32:47.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:32:45.960251+0000 mon.smithi073 (mon.0) 668 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:32:47.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:32:46.402982+0000 mon.smithi073 (mon.0) 669 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:32:47.058 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:32:44.956465+0000 mgr.smithi073.msdoog (mgr.14182) 407 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp 2024-01-27T23:32:47.059 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp 2024-01-27T23:32:47.059 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp 2024-01-27T23:32:47.059 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp 2024-01-27T23:32:47.059 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Deploy daemon haproxy.nfs.foo.smithi073.otqynp ... 2024-01-27T23:32:47.059 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:32:47.059 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2024-01-27T23:32:47.059 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:30:51Z" level=warning msg="Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:32:47.059 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:31:29Z" level=warning msg="Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:32:47.059 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:32:07Z" level=warning msg="Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:32:47.059 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2024-01-27T23:32:47.059 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:32:47.059 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Traceback (most recent call last): 2024-01-27T23:32:47.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:32:47.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: yield (conn, connr) 2024-01-27T23:32:47.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:32:47.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: code, '\n'.join(err))) 2024-01-27T23:32:47.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp 2024-01-27T23:32:47.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp 2024-01-27T23:32:47.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp 2024-01-27T23:32:47.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp 2024-01-27T23:32:47.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Deploy daemon haproxy.nfs.foo.smithi073.otqynp ... 2024-01-27T23:32:47.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:32:47.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2024-01-27T23:32:47.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:30:51Z" level=warning msg="Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:32:47.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:31:29Z" level=warning msg="Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:32:47.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:32:07Z" level=warning msg="Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:32:47.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2024-01-27T23:32:47.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:32:47.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:32:44.956616+0000 mgr.smithi073.msdoog (mgr.14182) 408 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi073.otqynp 2024-01-27T23:32:47.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:32:44.957689+0000 mgr.smithi073.msdoog (mgr.14182) 409 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp 2024-01-27T23:32:47.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp 2024-01-27T23:32:47.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp 2024-01-27T23:32:47.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp 2024-01-27T23:32:47.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Deploy daemon haproxy.nfs.foo.smithi073.otqynp ... 2024-01-27T23:32:47.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:32:47.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2024-01-27T23:32:47.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:30:51Z" level=warning msg="Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:32:47.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:31:29Z" level=warning msg="Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:32:47.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:32:07Z" level=warning msg="Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:32:47.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2024-01-27T23:32:47.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:32:47.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:32:44.962125+0000 mgr.smithi073.msdoog (mgr.14182) 410 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:32:47.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:32:44.963178+0000 mgr.smithi073.msdoog (mgr.14182) 411 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:32:47.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:32:44.964087+0000 mgr.smithi073.msdoog (mgr.14182) 412 : cluster [DBG] pgmap v271: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-27T23:32:47.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:32:45.960251+0000 mon.smithi073 (mon.0) 668 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:32:47.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:32:46.402982+0000 mon.smithi073 (mon.0) 669 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:32:47.708 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:32:48.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:47 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:32:46.281929+0000 mgr.smithi073.msdoog (mgr.14182) 413 : audit [DBG] from='client.15018 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:32:48.058 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:47 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:32:46.281929+0000 mgr.smithi073.msdoog (mgr.14182) 413 : audit [DBG] from='client.15018 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:32:48.727 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:48 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:32:46.964953+0000 mgr.smithi073.msdoog (mgr.14182) 414 : cluster [DBG] pgmap v272: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-27T23:32:49.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:48 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:32:46.964953+0000 mgr.smithi073.msdoog (mgr.14182) 414 : cluster [DBG] pgmap v272: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-27T23:32:49.461 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:32:49.461 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:32:49.796 INFO:tasks.cephadm:nfs.foo has 1/1 2024-01-27T23:32:49.796 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2024-01-27T23:32:49.809 INFO:tasks.cephadm:Waiting for ceph service ingress.nfs.foo to start (timeout 300)... 2024-01-27T23:32:49.810 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:32:50.058 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:49 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:32:48.951624+0000 mon.smithi073 (mon.0) 670 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:32:50.058 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:49 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:32:48.965635+0000 mgr.smithi073.msdoog (mgr.14182) 415 : cluster [DBG] pgmap v273: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-27T23:32:50.058 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:49 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:32:49.312116+0000 mon.smithi073 (mon.0) 671 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:32:50.058 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:49 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:32:49.312777+0000 mon.smithi073 (mon.0) 672 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:32:50.058 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:49 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:32:49.317566+0000 mgr.smithi073.msdoog (mgr.14182) 416 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-01-27T23:32:50.058 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:49 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:32:49.462657+0000 mgr.smithi073.msdoog (mgr.14182) 417 : audit [DBG] from='client.15022 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:32:50.058 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:49 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:32:49.581810+0000 mon.smithi073 (mon.0) 673 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:32:50.058 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:49 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:32:49.587013+0000 mon.smithi073 (mon.0) 674 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:32:50.059 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:49 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:32:49.592185+0000 mon.smithi073 (mon.0) 675 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:32:50.059 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:49 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:32:49.592968+0000 mgr.smithi073.msdoog (mgr.14182) 418 : cluster [DBG] pgmap v274: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 97 B/s rd, 0 op/s 2024-01-27T23:32:50.059 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:49 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:32:49.597616+0000 mon.smithi073 (mon.0) 676 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:32:50.059 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:49 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:32:49.606168+0000 mon.smithi073 (mon.0) 677 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:32:50.059 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:49 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:32:49.609204+0000 mgr.smithi073.msdoog (mgr.14182) 419 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi186.xyxgnw on smithi186 2024-01-27T23:32:50.258 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:49 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:32:48.951624+0000 mon.smithi073 (mon.0) 670 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:32:50.258 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:49 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:32:48.965635+0000 mgr.smithi073.msdoog (mgr.14182) 415 : cluster [DBG] pgmap v273: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-01-27T23:32:50.258 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:49 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:32:49.312116+0000 mon.smithi073 (mon.0) 671 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:32:50.258 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:49 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:32:49.312777+0000 mon.smithi073 (mon.0) 672 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:32:50.258 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:49 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:32:49.317566+0000 mgr.smithi073.msdoog (mgr.14182) 416 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-01-27T23:32:50.258 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:49 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:32:49.462657+0000 mgr.smithi073.msdoog (mgr.14182) 417 : audit [DBG] from='client.15022 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:32:50.259 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:49 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:32:49.581810+0000 mon.smithi073 (mon.0) 673 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:32:50.259 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:49 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:32:49.587013+0000 mon.smithi073 (mon.0) 674 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:32:50.259 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:49 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:32:49.592185+0000 mon.smithi073 (mon.0) 675 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:32:50.259 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:49 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:32:49.592968+0000 mgr.smithi073.msdoog (mgr.14182) 418 : cluster [DBG] pgmap v274: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 97 B/s rd, 0 op/s 2024-01-27T23:32:50.259 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:49 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:32:49.597616+0000 mon.smithi073 (mon.0) 676 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:32:50.259 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:49 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:32:49.606168+0000 mon.smithi073 (mon.0) 677 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:32:50.259 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:49 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:32:49.609204+0000 mgr.smithi073.msdoog (mgr.14182) 419 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi186.xyxgnw on smithi186 2024-01-27T23:32:51.199 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:32:51.199 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:32:51.225 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:32:49.949803+0000 mon.smithi073 (mon.0) 678 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:32:51.225 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:32:49.949834+0000 mon.smithi073 (mon.0) 679 : cluster [INF] Cluster is now healthy 2024-01-27T23:32:51.258 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:32:49.949803+0000 mon.smithi073 (mon.0) 678 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:32:51.258 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:32:49.949834+0000 mon.smithi073 (mon.0) 679 : cluster [INF] Cluster is now healthy 2024-01-27T23:32:51.619 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:32:52.258 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:51 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:32:51.200622+0000 mgr.smithi073.msdoog (mgr.14182) 420 : audit [DBG] from='client.15056 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:32:52.258 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:51 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:32:51.593794+0000 mgr.smithi073.msdoog (mgr.14182) 421 : cluster [DBG] pgmap v275: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.4 KiB/s rd, 1 op/s 2024-01-27T23:32:52.308 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:51 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:32:51.200622+0000 mgr.smithi073.msdoog (mgr.14182) 420 : audit [DBG] from='client.15056 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:32:52.308 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:51 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:32:51.593794+0000 mgr.smithi073.msdoog (mgr.14182) 421 : cluster [DBG] pgmap v275: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.4 KiB/s rd, 1 op/s 2024-01-27T23:32:52.620 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:32:53.970 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:32:53.970 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:32:54.353 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:32:55.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:54 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:32:53.594397+0000 mgr.smithi073.msdoog (mgr.14182) 422 : cluster [DBG] pgmap v276: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.0 KiB/s rd, 195 B/s wr, 2 op/s 2024-01-27T23:32:55.058 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:54 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:32:53.594397+0000 mgr.smithi073.msdoog (mgr.14182) 422 : cluster [DBG] pgmap v276: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.0 KiB/s rd, 195 B/s wr, 2 op/s 2024-01-27T23:32:55.354 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:32:55.964 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:32:53.973124+0000 mgr.smithi073.msdoog (mgr.14182) 423 : audit [DBG] from='client.15060 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:32:56.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:32:53.973124+0000 mgr.smithi073.msdoog (mgr.14182) 423 : audit [DBG] from='client.15060 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:32:56.654 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:32:56.654 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:32:56.925 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:56 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:32:55.594976+0000 mgr.smithi073.msdoog (mgr.14182) 424 : cluster [DBG] pgmap v277: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.4 KiB/s rd, 192 B/s wr, 2 op/s 2024-01-27T23:32:57.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:56 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:32:55.594976+0000 mgr.smithi073.msdoog (mgr.14182) 424 : cluster [DBG] pgmap v277: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.4 KiB/s rd, 192 B/s wr, 2 op/s 2024-01-27T23:32:57.028 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:32:58.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:57 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:32:56.656904+0000 mgr.smithi073.msdoog (mgr.14182) 425 : audit [DBG] from='client.15064 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:32:58.028 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:32:58.057 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:57 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:32:56.656904+0000 mgr.smithi073.msdoog (mgr.14182) 425 : audit [DBG] from='client.15064 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:32:58.981 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:32:58 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:32:57.596123+0000 mgr.smithi073.msdoog (mgr.14182) 426 : cluster [DBG] pgmap v278: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.4 KiB/s rd, 192 B/s wr, 2 op/s 2024-01-27T23:32:59.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:32:58 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:32:57.596123+0000 mgr.smithi073.msdoog (mgr.14182) 426 : cluster [DBG] pgmap v278: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.4 KiB/s rd, 192 B/s wr, 2 op/s 2024-01-27T23:32:59.335 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:32:59.335 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:32:59.719 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:33:00.719 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:33:00.758 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:00 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:32:59.336959+0000 mgr.smithi073.msdoog (mgr.14182) 427 : audit [DBG] from='client.15068 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:33:00.758 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:00 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:32:59.597055+0000 mgr.smithi073.msdoog (mgr.14182) 428 : cluster [DBG] pgmap v279: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.4 KiB/s rd, 192 B/s wr, 2 op/s 2024-01-27T23:33:00.808 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:00 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:32:59.336959+0000 mgr.smithi073.msdoog (mgr.14182) 427 : audit [DBG] from='client.15068 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:33:00.808 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:00 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:32:59.597055+0000 mgr.smithi073.msdoog (mgr.14182) 428 : cluster [DBG] pgmap v279: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.4 KiB/s rd, 192 B/s wr, 2 op/s 2024-01-27T23:33:02.110 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:33:02.110 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:33:02.485 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:33:02.808 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:02 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:33:01.597599+0000 mgr.smithi073.msdoog (mgr.14182) 429 : cluster [DBG] pgmap v280: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.1 KiB/s rd, 170 B/s wr, 2 op/s 2024-01-27T23:33:03.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:02 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:33:01.597599+0000 mgr.smithi073.msdoog (mgr.14182) 429 : cluster [DBG] pgmap v280: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.1 KiB/s rd, 170 B/s wr, 2 op/s 2024-01-27T23:33:03.486 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:33:03.808 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:03 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:33:02.112485+0000 mgr.smithi073.msdoog (mgr.14182) 430 : audit [DBG] from='client.15072 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:33:04.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:03 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:33:02.112485+0000 mgr.smithi073.msdoog (mgr.14182) 430 : audit [DBG] from='client.15072 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:33:04.808 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:04 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:33:03.598316+0000 mgr.smithi073.msdoog (mgr.14182) 431 : cluster [DBG] pgmap v281: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1023 B/s rd, 170 B/s wr, 1 op/s 2024-01-27T23:33:04.911 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:33:04.911 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:33:05.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:04 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:33:03.598316+0000 mgr.smithi073.msdoog (mgr.14182) 431 : cluster [DBG] pgmap v281: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1023 B/s rd, 170 B/s wr, 1 op/s 2024-01-27T23:33:05.284 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:33:06.285 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:33:06.929 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:06 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:33:04.913325+0000 mgr.smithi073.msdoog (mgr.14182) 432 : audit [DBG] from='client.15076 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:33:06.929 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:06 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:33:05.599330+0000 mgr.smithi073.msdoog (mgr.14182) 433 : cluster [DBG] pgmap v282: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 426 B/s rd, 0 op/s 2024-01-27T23:33:07.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:06 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:33:04.913325+0000 mgr.smithi073.msdoog (mgr.14182) 432 : audit [DBG] from='client.15076 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:33:07.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:06 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:33:05.599330+0000 mgr.smithi073.msdoog (mgr.14182) 433 : cluster [DBG] pgmap v282: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 426 B/s rd, 0 op/s 2024-01-27T23:33:07.620 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:33:07.620 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:33:08.002 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:33:09.003 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:33:09.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:08 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:33:07.600089+0000 mgr.smithi073.msdoog (mgr.14182) 434 : cluster [DBG] pgmap v283: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:33:09.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:08 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:33:07.622377+0000 mgr.smithi073.msdoog (mgr.14182) 435 : audit [DBG] from='client.15080 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:33:09.037 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:08 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:33:07.600089+0000 mgr.smithi073.msdoog (mgr.14182) 434 : cluster [DBG] pgmap v283: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:33:09.038 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:08 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:33:07.622377+0000 mgr.smithi073.msdoog (mgr.14182) 435 : audit [DBG] from='client.15080 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:33:10.396 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:33:10.396 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:33:10.690 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:10 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:33:09.600731+0000 mgr.smithi073.msdoog (mgr.14182) 436 : cluster [DBG] pgmap v284: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:33:10.758 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:10 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:33:09.600731+0000 mgr.smithi073.msdoog (mgr.14182) 436 : cluster [DBG] pgmap v284: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:33:10.759 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:33:11.760 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:33:11.794 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:11 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:33:10.398292+0000 mgr.smithi073.msdoog (mgr.14182) 437 : audit [DBG] from='client.15084 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:33:11.975 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:11 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:33:10.398292+0000 mgr.smithi073.msdoog (mgr.14182) 437 : audit [DBG] from='client.15084 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:33:12.737 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:12 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:33:11.601309+0000 mgr.smithi073.msdoog (mgr.14182) 438 : cluster [DBG] pgmap v285: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:33:13.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:12 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:33:11.601309+0000 mgr.smithi073.msdoog (mgr.14182) 438 : cluster [DBG] pgmap v285: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:33:13.103 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:33:13.103 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:33:13.475 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:33:14.476 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:33:14.808 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:14 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:33:13.105724+0000 mgr.smithi073.msdoog (mgr.14182) 439 : audit [DBG] from='client.15088 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:33:14.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:14 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:33:13.602104+0000 mgr.smithi073.msdoog (mgr.14182) 440 : cluster [DBG] pgmap v286: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:33:15.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:14 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:33:13.105724+0000 mgr.smithi073.msdoog (mgr.14182) 439 : audit [DBG] from='client.15088 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:33:15.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:14 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:33:13.602104+0000 mgr.smithi073.msdoog (mgr.14182) 440 : cluster [DBG] pgmap v286: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:33:15.843 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:33:15.843 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:33:16.208 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:33:17.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:33:15.602627+0000 mgr.smithi073.msdoog (mgr.14182) 441 : cluster [DBG] pgmap v287: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:33:17.058 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:33:15.602627+0000 mgr.smithi073.msdoog (mgr.14182) 441 : cluster [DBG] pgmap v287: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:33:17.209 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:33:17.808 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:17 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:33:15.845425+0000 mgr.smithi073.msdoog (mgr.14182) 442 : audit [DBG] from='client.15092 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:33:18.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:17 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:33:15.845425+0000 mgr.smithi073.msdoog (mgr.14182) 442 : audit [DBG] from='client.15092 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:33:18.593 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:33:18.593 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:33:18.897 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:18 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:33:17.603516+0000 mgr.smithi073.msdoog (mgr.14182) 443 : cluster [DBG] pgmap v288: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:33:18.916 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:33:19.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:18 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:33:17.603516+0000 mgr.smithi073.msdoog (mgr.14182) 443 : cluster [DBG] pgmap v288: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:33:19.917 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:33:19.950 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:19 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:33:18.595402+0000 mgr.smithi073.msdoog (mgr.14182) 444 : audit [DBG] from='client.15096 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:33:20.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:19 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:33:18.595402+0000 mgr.smithi073.msdoog (mgr.14182) 444 : audit [DBG] from='client.15096 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:33:20.928 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:33:19.604214+0000 mgr.smithi073.msdoog (mgr.14182) 445 : cluster [DBG] pgmap v289: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:33:21.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:33:19.604214+0000 mgr.smithi073.msdoog (mgr.14182) 445 : cluster [DBG] pgmap v289: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:33:21.284 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:33:21.284 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:33:21.665 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:33:22.667 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:33:23.008 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:22 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:33:21.286374+0000 mgr.smithi073.msdoog (mgr.14182) 446 : audit [DBG] from='client.15100 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:33:23.008 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:22 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:33:21.605001+0000 mgr.smithi073.msdoog (mgr.14182) 447 : cluster [DBG] pgmap v290: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:33:23.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:22 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:33:21.286374+0000 mgr.smithi073.msdoog (mgr.14182) 446 : audit [DBG] from='client.15100 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:33:23.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:22 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:33:21.605001+0000 mgr.smithi073.msdoog (mgr.14182) 447 : cluster [DBG] pgmap v290: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:33:23.979 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:33:23.979 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:33:24.366 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:33:25.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:33:23.605593+0000 mgr.smithi073.msdoog (mgr.14182) 448 : cluster [DBG] pgmap v291: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:33:25.058 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:33:23.605593+0000 mgr.smithi073.msdoog (mgr.14182) 448 : cluster [DBG] pgmap v291: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:33:25.366 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:33:26.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:25 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:33:23.981457+0000 mgr.smithi073.msdoog (mgr.14182) 449 : audit [DBG] from='client.15104 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:33:26.009 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:25 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:33:23.981457+0000 mgr.smithi073.msdoog (mgr.14182) 449 : audit [DBG] from='client.15104 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:33:26.709 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:33:26.709 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:33:26.996 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:26 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:33:25.606162+0000 mgr.smithi073.msdoog (mgr.14182) 450 : cluster [DBG] pgmap v292: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:33:27.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:26 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:33:25.606162+0000 mgr.smithi073.msdoog (mgr.14182) 450 : cluster [DBG] pgmap v292: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:33:27.074 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:33:28.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:27 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:33:26.710979+0000 mgr.smithi073.msdoog (mgr.14182) 451 : audit [DBG] from='client.15108 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:33:28.058 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:27 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:33:26.710979+0000 mgr.smithi073.msdoog (mgr.14182) 451 : audit [DBG] from='client.15108 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:33:28.075 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:33:29.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:33:27.607040+0000 mgr.smithi073.msdoog (mgr.14182) 452 : cluster [DBG] pgmap v293: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:33:29.058 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:33:27.607040+0000 mgr.smithi073.msdoog (mgr.14182) 452 : cluster [DBG] pgmap v293: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:33:29.430 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:33:29.430 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:33:29.807 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:33:30.808 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:33:30.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:30 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:33:29.432874+0000 mgr.smithi073.msdoog (mgr.14182) 453 : audit [DBG] from='client.15112 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:33:30.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:30 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:33:29.607588+0000 mgr.smithi073.msdoog (mgr.14182) 454 : cluster [DBG] pgmap v294: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:33:31.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:30 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:33:29.432874+0000 mgr.smithi073.msdoog (mgr.14182) 453 : audit [DBG] from='client.15112 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:33:31.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:30 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:33:29.607588+0000 mgr.smithi073.msdoog (mgr.14182) 454 : cluster [DBG] pgmap v294: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:33:32.114 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:33:32.114 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:33:32.533 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:33:32.808 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:32 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:33:31.608130+0000 mgr.smithi073.msdoog (mgr.14182) 455 : cluster [DBG] pgmap v295: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:33:33.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:32 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:33:31.608130+0000 mgr.smithi073.msdoog (mgr.14182) 455 : cluster [DBG] pgmap v295: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:33:33.535 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:33:33.873 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:33 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:33:32.116338+0000 mgr.smithi073.msdoog (mgr.14182) 456 : audit [DBG] from='client.15116 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:33:34.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:33 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:33:32.116338+0000 mgr.smithi073.msdoog (mgr.14182) 456 : audit [DBG] from='client.15116 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:33:34.808 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:34 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:33:33.608829+0000 mgr.smithi073.msdoog (mgr.14182) 457 : cluster [DBG] pgmap v296: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:33:34.866 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:33:34.867 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:33:35.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:34 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:33:33.608829+0000 mgr.smithi073.msdoog (mgr.14182) 457 : cluster [DBG] pgmap v296: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:33:35.239 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:33:36.239 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:33:36.867 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:36 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:33:34.868552+0000 mgr.smithi073.msdoog (mgr.14182) 458 : audit [DBG] from='client.15120 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:33:36.867 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:36 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:33:35.609383+0000 mgr.smithi073.msdoog (mgr.14182) 459 : cluster [DBG] pgmap v297: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:33:37.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:36 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:33:34.868552+0000 mgr.smithi073.msdoog (mgr.14182) 458 : audit [DBG] from='client.15120 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:33:37.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:36 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:33:35.609383+0000 mgr.smithi073.msdoog (mgr.14182) 459 : cluster [DBG] pgmap v297: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:33:37.539 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:33:37.539 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:33:37.905 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:33:38.905 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:33:38.935 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:38 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:33:37.540676+0000 mgr.smithi073.msdoog (mgr.14182) 460 : audit [DBG] from='client.15124 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:33:38.935 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:38 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:33:37.610072+0000 mgr.smithi073.msdoog (mgr.14182) 461 : cluster [DBG] pgmap v298: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:33:39.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:38 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:33:37.540676+0000 mgr.smithi073.msdoog (mgr.14182) 460 : audit [DBG] from='client.15124 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:33:39.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:38 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:33:37.610072+0000 mgr.smithi073.msdoog (mgr.14182) 461 : cluster [DBG] pgmap v298: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:33:40.234 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:33:40.234 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:33:40.613 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:33:40.808 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:40 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:33:39.610626+0000 mgr.smithi073.msdoog (mgr.14182) 462 : cluster [DBG] pgmap v299: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:33:41.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:40 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:33:39.610626+0000 mgr.smithi073.msdoog (mgr.14182) 462 : cluster [DBG] pgmap v299: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:33:41.614 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:33:41.808 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:41 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:33:40.236561+0000 mgr.smithi073.msdoog (mgr.14182) 463 : audit [DBG] from='client.15128 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:33:41.976 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:41 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:33:40.236561+0000 mgr.smithi073.msdoog (mgr.14182) 463 : audit [DBG] from='client.15128 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:33:42.808 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:42 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:33:41.611430+0000 mgr.smithi073.msdoog (mgr.14182) 464 : cluster [DBG] pgmap v300: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:33:43.005 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:33:43.005 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:33:43.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:42 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:33:41.611430+0000 mgr.smithi073.msdoog (mgr.14182) 464 : cluster [DBG] pgmap v300: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:33:43.372 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:33:44.381 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:33:44.711 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:33:43.007886+0000 mgr.smithi073.msdoog (mgr.14182) 465 : audit [DBG] from='client.15132 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:33:44.711 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:33:43.612026+0000 mgr.smithi073.msdoog (mgr.14182) 466 : cluster [DBG] pgmap v301: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:33:45.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:44 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:33:43.007886+0000 mgr.smithi073.msdoog (mgr.14182) 465 : audit [DBG] from='client.15132 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:33:45.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:44 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:33:43.612026+0000 mgr.smithi073.msdoog (mgr.14182) 466 : cluster [DBG] pgmap v301: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:33:45.699 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:33:45.700 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:33:46.078 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:33:47.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:33:45.612589+0000 mgr.smithi073.msdoog (mgr.14182) 467 : cluster [DBG] pgmap v302: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:33:47.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:33:45.701870+0000 mgr.smithi073.msdoog (mgr.14182) 468 : audit [DBG] from='client.15136 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:33:47.058 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:33:45.612589+0000 mgr.smithi073.msdoog (mgr.14182) 467 : cluster [DBG] pgmap v302: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:33:47.058 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:33:45.701870+0000 mgr.smithi073.msdoog (mgr.14182) 468 : audit [DBG] from='client.15136 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:33:47.080 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:33:48.428 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:33:48.429 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:33:48.718 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:48 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:33:47.613329+0000 mgr.smithi073.msdoog (mgr.14182) 469 : cluster [DBG] pgmap v303: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:33:48.804 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:33:49.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:48 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:33:47.613329+0000 mgr.smithi073.msdoog (mgr.14182) 469 : cluster [DBG] pgmap v303: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:33:49.804 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:33:50.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:49 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:33:48.430809+0000 mgr.smithi073.msdoog (mgr.14182) 470 : audit [DBG] from='client.15140 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:33:50.058 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:49 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:33:48.430809+0000 mgr.smithi073.msdoog (mgr.14182) 470 : audit [DBG] from='client.15140 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:33:50.808 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:33:49.614055+0000 mgr.smithi073.msdoog (mgr.14182) 471 : cluster [DBG] pgmap v304: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:33:51.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:33:49.614055+0000 mgr.smithi073.msdoog (mgr.14182) 471 : cluster [DBG] pgmap v304: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:33:51.162 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:33:51.162 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:33:51.495 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:33:52.496 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:33:52.808 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:52 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:33:51.164272+0000 mgr.smithi073.msdoog (mgr.14182) 472 : audit [DBG] from='client.15144 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:33:52.808 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:52 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:33:51.614807+0000 mgr.smithi073.msdoog (mgr.14182) 473 : cluster [DBG] pgmap v305: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:33:53.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:52 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:33:51.164272+0000 mgr.smithi073.msdoog (mgr.14182) 472 : audit [DBG] from='client.15144 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:33:53.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:52 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:33:51.614807+0000 mgr.smithi073.msdoog (mgr.14182) 473 : cluster [DBG] pgmap v305: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:33:53.863 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:33:53.863 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:33:54.229 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:33:55.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:54 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:33:53.615394+0000 mgr.smithi073.msdoog (mgr.14182) 474 : cluster [DBG] pgmap v306: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:33:55.059 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:54 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:33:53.615394+0000 mgr.smithi073.msdoog (mgr.14182) 474 : cluster [DBG] pgmap v306: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:33:55.230 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:33:55.931 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:33:53.865138+0000 mgr.smithi073.msdoog (mgr.14182) 475 : audit [DBG] from='client.15148 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:33:56.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:33:53.865138+0000 mgr.smithi073.msdoog (mgr.14182) 475 : audit [DBG] from='client.15148 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:33:56.608 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:33:56.608 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:33:56.908 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:56 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:33:55.615978+0000 mgr.smithi073.msdoog (mgr.14182) 476 : cluster [DBG] pgmap v307: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:33:57.003 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:33:57.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:56 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:33:55.615978+0000 mgr.smithi073.msdoog (mgr.14182) 476 : cluster [DBG] pgmap v307: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:33:58.005 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:33:58.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:57 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:33:56.609609+0000 mgr.smithi073.msdoog (mgr.14182) 477 : audit [DBG] from='client.15152 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:33:58.038 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:57 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:33:56.609609+0000 mgr.smithi073.msdoog (mgr.14182) 477 : audit [DBG] from='client.15152 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:33:59.006 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:33:58 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:33:57.617055+0000 mgr.smithi073.msdoog (mgr.14182) 478 : cluster [DBG] pgmap v308: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:33:59.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:33:58 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:33:57.617055+0000 mgr.smithi073.msdoog (mgr.14182) 478 : cluster [DBG] pgmap v308: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:33:59.362 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:33:59.362 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:33:59.744 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:34:00.745 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:34:00.778 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:00 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:33:59.364347+0000 mgr.smithi073.msdoog (mgr.14182) 479 : audit [DBG] from='client.15156 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:34:00.779 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:00 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:33:59.617602+0000 mgr.smithi073.msdoog (mgr.14182) 480 : cluster [DBG] pgmap v309: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:34:01.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:00 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:33:59.364347+0000 mgr.smithi073.msdoog (mgr.14182) 479 : audit [DBG] from='client.15156 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:34:01.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:00 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:33:59.617602+0000 mgr.smithi073.msdoog (mgr.14182) 480 : cluster [DBG] pgmap v309: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:34:02.072 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:34:02.072 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:34:02.451 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:34:03.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:02 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:34:01.618268+0000 mgr.smithi073.msdoog (mgr.14182) 481 : cluster [DBG] pgmap v310: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:34:03.058 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:02 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:34:01.618268+0000 mgr.smithi073.msdoog (mgr.14182) 481 : cluster [DBG] pgmap v310: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:34:03.451 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:34:03.786 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:03 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:34:02.074101+0000 mgr.smithi073.msdoog (mgr.14182) 482 : audit [DBG] from='client.15160 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:34:04.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:03 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:34:02.074101+0000 mgr.smithi073.msdoog (mgr.14182) 482 : audit [DBG] from='client.15160 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:34:04.780 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:34:04.780 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:34:04.945 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:04 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:34:03.618933+0000 mgr.smithi073.msdoog (mgr.14182) 483 : cluster [DBG] pgmap v311: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:34:05.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:04 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:34:03.618933+0000 mgr.smithi073.msdoog (mgr.14182) 483 : cluster [DBG] pgmap v311: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:34:05.176 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:34:06.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:05 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:34:04.782239+0000 mgr.smithi073.msdoog (mgr.14182) 484 : audit [DBG] from='client.15164 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:34:06.058 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:05 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:34:04.782239+0000 mgr.smithi073.msdoog (mgr.14182) 484 : audit [DBG] from='client.15164 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:34:06.177 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:34:06.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:06 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:34:05.619519+0000 mgr.smithi073.msdoog (mgr.14182) 485 : cluster [DBG] pgmap v312: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:34:07.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:06 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:34:05.619519+0000 mgr.smithi073.msdoog (mgr.14182) 485 : cluster [DBG] pgmap v312: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:34:07.536 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:34:07.536 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:34:07.908 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:34:08.909 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:34:08.938 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:08 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:34:07.538139+0000 mgr.smithi073.msdoog (mgr.14182) 486 : audit [DBG] from='client.15168 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:34:08.938 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:08 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:34:07.620275+0000 mgr.smithi073.msdoog (mgr.14182) 487 : cluster [DBG] pgmap v313: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:34:09.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:08 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:34:07.538139+0000 mgr.smithi073.msdoog (mgr.14182) 486 : audit [DBG] from='client.15168 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:34:09.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:08 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:34:07.620275+0000 mgr.smithi073.msdoog (mgr.14182) 487 : cluster [DBG] pgmap v313: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:34:10.235 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:34:10.236 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:34:10.633 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:34:10.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:10 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:34:09.621093+0000 mgr.smithi073.msdoog (mgr.14182) 488 : cluster [DBG] pgmap v314: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:34:11.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:10 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:34:09.621093+0000 mgr.smithi073.msdoog (mgr.14182) 488 : cluster [DBG] pgmap v314: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:34:11.634 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:34:11.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:11 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:34:10.237249+0000 mgr.smithi073.msdoog (mgr.14182) 489 : audit [DBG] from='client.15172 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:34:11.976 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:11 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:34:10.237249+0000 mgr.smithi073.msdoog (mgr.14182) 489 : audit [DBG] from='client.15172 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:34:12.558 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:12 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:34:11.621933+0000 mgr.smithi073.msdoog (mgr.14182) 490 : cluster [DBG] pgmap v315: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:34:12.955 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:34:12.956 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:34:13.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:12 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:34:11.621933+0000 mgr.smithi073.msdoog (mgr.14182) 490 : cluster [DBG] pgmap v315: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:34:13.341 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:34:14.343 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:34:14.978 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:14 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:34:12.957391+0000 mgr.smithi073.msdoog (mgr.14182) 491 : audit [DBG] from='client.15176 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:34:14.978 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:14 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:34:13.622817+0000 mgr.smithi073.msdoog (mgr.14182) 492 : cluster [DBG] pgmap v316: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:34:15.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:14 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:34:12.957391+0000 mgr.smithi073.msdoog (mgr.14182) 491 : audit [DBG] from='client.15176 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:34:15.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:14 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:34:13.622817+0000 mgr.smithi073.msdoog (mgr.14182) 492 : cluster [DBG] pgmap v316: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:34:15.654 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:34:15.654 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:34:16.024 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:34:17.008 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:34:15.623498+0000 mgr.smithi073.msdoog (mgr.14182) 493 : cluster [DBG] pgmap v317: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:34:17.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:34:15.655828+0000 mgr.smithi073.msdoog (mgr.14182) 494 : audit [DBG] from='client.15180 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:34:17.025 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:34:17.059 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:34:15.623498+0000 mgr.smithi073.msdoog (mgr.14182) 493 : cluster [DBG] pgmap v317: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:34:17.059 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:34:15.655828+0000 mgr.smithi073.msdoog (mgr.14182) 494 : audit [DBG] from='client.15180 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:34:18.323 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:34:18.323 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:34:18.716 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:34:19.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:18 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:34:17.624465+0000 mgr.smithi073.msdoog (mgr.14182) 495 : cluster [DBG] pgmap v318: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:34:19.059 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:18 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:34:17.624465+0000 mgr.smithi073.msdoog (mgr.14182) 495 : cluster [DBG] pgmap v318: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:34:19.717 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:34:20.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:19 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:34:18.324675+0000 mgr.smithi073.msdoog (mgr.14182) 496 : audit [DBG] from='client.15184 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:34:20.043 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:19 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:34:18.324675+0000 mgr.smithi073.msdoog (mgr.14182) 496 : audit [DBG] from='client.15184 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:34:21.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:34:19.625215+0000 mgr.smithi073.msdoog (mgr.14182) 497 : cluster [DBG] pgmap v319: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:34:21.014 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:34:21.014 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:34:21.039 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:34:19.625215+0000 mgr.smithi073.msdoog (mgr.14182) 497 : cluster [DBG] pgmap v319: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:34:21.373 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:34:22.374 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:34:23.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:22 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:34:21.015117+0000 mgr.smithi073.msdoog (mgr.14182) 498 : audit [DBG] from='client.15188 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:34:23.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:22 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:34:21.625915+0000 mgr.smithi073.msdoog (mgr.14182) 499 : cluster [DBG] pgmap v320: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:34:23.018 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:22 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:34:21.015117+0000 mgr.smithi073.msdoog (mgr.14182) 498 : audit [DBG] from='client.15188 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:34:23.018 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:22 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:34:21.625915+0000 mgr.smithi073.msdoog (mgr.14182) 499 : cluster [DBG] pgmap v320: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:34:23.691 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:34:23.692 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:34:24.057 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:34:25.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:34:23.626574+0000 mgr.smithi073.msdoog (mgr.14182) 500 : cluster [DBG] pgmap v321: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:34:25.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:34:23.692742+0000 mgr.smithi073.msdoog (mgr.14182) 501 : audit [DBG] from='client.15192 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:34:25.057 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:34:25.058 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:34:23.626574+0000 mgr.smithi073.msdoog (mgr.14182) 500 : cluster [DBG] pgmap v321: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:34:25.059 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:34:23.692742+0000 mgr.smithi073.msdoog (mgr.14182) 501 : audit [DBG] from='client.15192 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:34:26.389 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:34:26.389 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:34:26.757 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:34:27.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:26 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:34:25.627385+0000 mgr.smithi073.msdoog (mgr.14182) 502 : cluster [DBG] pgmap v322: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:34:27.059 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:26 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:34:25.627385+0000 mgr.smithi073.msdoog (mgr.14182) 502 : cluster [DBG] pgmap v322: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:34:27.758 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:34:28.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:27 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:34:26.391216+0000 mgr.smithi073.msdoog (mgr.14182) 503 : audit [DBG] from='client.15196 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:34:28.059 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:27 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:34:26.391216+0000 mgr.smithi073.msdoog (mgr.14182) 503 : audit [DBG] from='client.15196 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:34:29.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:34:27.628411+0000 mgr.smithi073.msdoog (mgr.14182) 504 : cluster [DBG] pgmap v323: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:34:29.059 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:34:27.628411+0000 mgr.smithi073.msdoog (mgr.14182) 504 : cluster [DBG] pgmap v323: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:34:29.115 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:34:29.115 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:34:29.490 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:34:30.523 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:34:30.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:30 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:34:29.116986+0000 mgr.smithi073.msdoog (mgr.14182) 505 : audit [DBG] from='client.15200 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:34:30.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:30 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:34:29.628999+0000 mgr.smithi073.msdoog (mgr.14182) 506 : cluster [DBG] pgmap v324: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:34:31.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:30 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:34:29.116986+0000 mgr.smithi073.msdoog (mgr.14182) 505 : audit [DBG] from='client.15200 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:34:31.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:30 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:34:29.628999+0000 mgr.smithi073.msdoog (mgr.14182) 506 : cluster [DBG] pgmap v324: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:34:31.865 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:34:31.865 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:34:32.238 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:34:33.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:32 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:34:31.629457+0000 mgr.smithi073.msdoog (mgr.14182) 507 : cluster [DBG] pgmap v325: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:34:33.059 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:32 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:34:31.629457+0000 mgr.smithi073.msdoog (mgr.14182) 507 : cluster [DBG] pgmap v325: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:34:33.239 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:34:33.950 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:33 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:34:31.867280+0000 mgr.smithi073.msdoog (mgr.14182) 508 : audit [DBG] from='client.15204 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:34:34.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:33 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:34:31.867280+0000 mgr.smithi073.msdoog (mgr.14182) 508 : audit [DBG] from='client.15204 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:34:34.652 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:34:34.652 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:34:34.945 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:34 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:34:33.630115+0000 mgr.smithi073.msdoog (mgr.14182) 509 : cluster [DBG] pgmap v326: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:34:35.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:34 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:34:33.630115+0000 mgr.smithi073.msdoog (mgr.14182) 509 : cluster [DBG] pgmap v326: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:34:35.039 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:34:36.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:35 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:34:34.653642+0000 mgr.smithi073.msdoog (mgr.14182) 510 : audit [DBG] from='client.15208 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:34:36.039 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:34:36.059 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:35 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:34:34.653642+0000 mgr.smithi073.msdoog (mgr.14182) 510 : audit [DBG] from='client.15208 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:34:37.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:36 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:34:35.630722+0000 mgr.smithi073.msdoog (mgr.14182) 511 : cluster [DBG] pgmap v327: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:34:37.042 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:36 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:34:35.630722+0000 mgr.smithi073.msdoog (mgr.14182) 511 : cluster [DBG] pgmap v327: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:34:37.390 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:34:37.390 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:34:37.770 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:34:38.771 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:34:39.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:38 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:34:37.391808+0000 mgr.smithi073.msdoog (mgr.14182) 512 : audit [DBG] from='client.15212 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:34:39.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:38 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:34:37.631520+0000 mgr.smithi073.msdoog (mgr.14182) 513 : cluster [DBG] pgmap v328: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:34:39.059 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:38 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:34:37.391808+0000 mgr.smithi073.msdoog (mgr.14182) 512 : audit [DBG] from='client.15212 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:34:39.059 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:38 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:34:37.631520+0000 mgr.smithi073.msdoog (mgr.14182) 513 : cluster [DBG] pgmap v328: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:34:40.123 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:34:40.123 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:34:40.496 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:34:40.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:40 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:34:39.632130+0000 mgr.smithi073.msdoog (mgr.14182) 514 : cluster [DBG] pgmap v329: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:34:41.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:40 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:34:39.632130+0000 mgr.smithi073.msdoog (mgr.14182) 514 : cluster [DBG] pgmap v329: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:34:41.497 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:34:41.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:41 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:34:40.124930+0000 mgr.smithi073.msdoog (mgr.14182) 515 : audit [DBG] from='client.15216 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:34:41.976 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:41 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:34:40.124930+0000 mgr.smithi073.msdoog (mgr.14182) 515 : audit [DBG] from='client.15216 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:34:42.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:42 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:34:41.632694+0000 mgr.smithi073.msdoog (mgr.14182) 516 : cluster [DBG] pgmap v330: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:34:42.834 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:34:42.834 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:34:43.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:42 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:34:41.632694+0000 mgr.smithi073.msdoog (mgr.14182) 516 : cluster [DBG] pgmap v330: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:34:43.212 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:34:43.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:43 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:34:42.836709+0000 mgr.smithi073.msdoog (mgr.14182) 517 : audit [DBG] from='client.15220 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:34:44.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:43 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:34:42.836709+0000 mgr.smithi073.msdoog (mgr.14182) 517 : audit [DBG] from='client.15220 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:34:44.212 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:34:44.549 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:34:43.633455+0000 mgr.smithi073.msdoog (mgr.14182) 518 : cluster [DBG] pgmap v331: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:34:45.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:44 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:34:43.633455+0000 mgr.smithi073.msdoog (mgr.14182) 518 : cluster [DBG] pgmap v331: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:34:45.594 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:34:45.594 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:34:45.978 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:34:46.979 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:34:47.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:34:45.595924+0000 mgr.smithi073.msdoog (mgr.14182) 519 : audit [DBG] from='client.15224 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:34:47.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:34:45.634002+0000 mgr.smithi073.msdoog (mgr.14182) 520 : cluster [DBG] pgmap v332: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:34:47.013 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:34:45.595924+0000 mgr.smithi073.msdoog (mgr.14182) 519 : audit [DBG] from='client.15224 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:34:47.013 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:34:45.634002+0000 mgr.smithi073.msdoog (mgr.14182) 520 : cluster [DBG] pgmap v332: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:34:48.352 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:34:48.353 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:34:48.744 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:34:49.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:48 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:34:47.634688+0000 mgr.smithi073.msdoog (mgr.14182) 521 : cluster [DBG] pgmap v333: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:34:49.059 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:48 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:34:47.634688+0000 mgr.smithi073.msdoog (mgr.14182) 521 : cluster [DBG] pgmap v333: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:34:49.745 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:34:50.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:49 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:34:48.354050+0000 mgr.smithi073.msdoog (mgr.14182) 522 : audit [DBG] from='client.15228 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:34:50.059 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:49 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:34:48.354050+0000 mgr.smithi073.msdoog (mgr.14182) 522 : audit [DBG] from='client.15228 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:34:50.776 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:34:49.635310+0000 mgr.smithi073.msdoog (mgr.14182) 523 : cluster [DBG] pgmap v334: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:34:51.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:34:49.635310+0000 mgr.smithi073.msdoog (mgr.14182) 523 : cluster [DBG] pgmap v334: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:34:51.128 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:34:51.128 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:34:51.503 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:34:52.505 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:34:52.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:52 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:34:51.130401+0000 mgr.smithi073.msdoog (mgr.14182) 524 : audit [DBG] from='client.15232 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:34:52.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:52 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:34:51.635880+0000 mgr.smithi073.msdoog (mgr.14182) 525 : cluster [DBG] pgmap v335: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:34:53.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:52 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:34:51.130401+0000 mgr.smithi073.msdoog (mgr.14182) 524 : audit [DBG] from='client.15232 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:34:53.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:52 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:34:51.635880+0000 mgr.smithi073.msdoog (mgr.14182) 525 : cluster [DBG] pgmap v335: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:34:53.877 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:34:53.877 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:34:54.252 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:34:55.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:54 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:34:53.636463+0000 mgr.smithi073.msdoog (mgr.14182) 526 : cluster [DBG] pgmap v336: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:34:55.059 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:54 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:34:53.636463+0000 mgr.smithi073.msdoog (mgr.14182) 526 : cluster [DBG] pgmap v336: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:34:55.254 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:34:55.905 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:34:53.878266+0000 mgr.smithi073.msdoog (mgr.14182) 527 : audit [DBG] from='client.15236 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:34:56.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:34:53.878266+0000 mgr.smithi073.msdoog (mgr.14182) 527 : audit [DBG] from='client.15236 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:34:56.562 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:34:56.562 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:34:56.892 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:56 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:34:55.636996+0000 mgr.smithi073.msdoog (mgr.14182) 528 : cluster [DBG] pgmap v337: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:34:56.944 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:34:57.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:56 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:34:55.636996+0000 mgr.smithi073.msdoog (mgr.14182) 528 : cluster [DBG] pgmap v337: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:34:57.945 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:34:57.976 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:57 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:34:56.563698+0000 mgr.smithi073.msdoog (mgr.14182) 529 : audit [DBG] from='client.15240 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:34:58.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:57 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:34:56.563698+0000 mgr.smithi073.msdoog (mgr.14182) 529 : audit [DBG] from='client.15240 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:34:58.915 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:34:58 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:34:57.637828+0000 mgr.smithi073.msdoog (mgr.14182) 530 : cluster [DBG] pgmap v338: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:34:59.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:34:58 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:34:57.637828+0000 mgr.smithi073.msdoog (mgr.14182) 530 : cluster [DBG] pgmap v338: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:34:59.268 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:34:59.268 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:34:59.684 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:35:00.686 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:35:00.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:00 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:34:59.269542+0000 mgr.smithi073.msdoog (mgr.14182) 531 : audit [DBG] from='client.15244 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:00.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:00 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:34:59.638362+0000 mgr.smithi073.msdoog (mgr.14182) 532 : cluster [DBG] pgmap v339: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:01.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:00 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:34:59.269542+0000 mgr.smithi073.msdoog (mgr.14182) 531 : audit [DBG] from='client.15244 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:01.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:00 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:34:59.638362+0000 mgr.smithi073.msdoog (mgr.14182) 532 : cluster [DBG] pgmap v339: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:02.036 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:35:02.036 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:35:02.435 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:35:03.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:02 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:35:01.638881+0000 mgr.smithi073.msdoog (mgr.14182) 533 : cluster [DBG] pgmap v340: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:03.059 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:02 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:35:01.638881+0000 mgr.smithi073.msdoog (mgr.14182) 533 : cluster [DBG] pgmap v340: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:03.436 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:35:03.745 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:03 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:35:02.037174+0000 mgr.smithi073.msdoog (mgr.14182) 534 : audit [DBG] from='client.15248 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:04.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:03 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:35:02.037174+0000 mgr.smithi073.msdoog (mgr.14182) 534 : audit [DBG] from='client.15248 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:04.788 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:35:04.788 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:35:04.954 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:04 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:35:03.639632+0000 mgr.smithi073.msdoog (mgr.14182) 535 : cluster [DBG] pgmap v341: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:35:05.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:04 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:35:03.639632+0000 mgr.smithi073.msdoog (mgr.14182) 535 : cluster [DBG] pgmap v341: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:35:05.176 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:35:06.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:05 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:35:04.789140+0000 mgr.smithi073.msdoog (mgr.14182) 536 : audit [DBG] from='client.15252 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:06.059 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:05 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:35:04.789140+0000 mgr.smithi073.msdoog (mgr.14182) 536 : audit [DBG] from='client.15252 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:06.179 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:35:06.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:06 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:35:05.640199+0000 mgr.smithi073.msdoog (mgr.14182) 537 : cluster [DBG] pgmap v342: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:07.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:06 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:35:05.640199+0000 mgr.smithi073.msdoog (mgr.14182) 537 : cluster [DBG] pgmap v342: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:07.525 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:35:07.526 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:35:07.900 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:35:08.902 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:35:09.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:08 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:35:07.526643+0000 mgr.smithi073.msdoog (mgr.14182) 538 : audit [DBG] from='client.15256 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:09.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:08 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:35:07.641136+0000 mgr.smithi073.msdoog (mgr.14182) 539 : cluster [DBG] pgmap v343: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:09.059 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:08 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:35:07.526643+0000 mgr.smithi073.msdoog (mgr.14182) 538 : audit [DBG] from='client.15256 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:09.059 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:08 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:35:07.641136+0000 mgr.smithi073.msdoog (mgr.14182) 539 : cluster [DBG] pgmap v343: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:10.250 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:35:10.250 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:35:10.626 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:35:10.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:10 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:35:09.641990+0000 mgr.smithi073.msdoog (mgr.14182) 540 : cluster [DBG] pgmap v344: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:11.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:10 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:35:09.641990+0000 mgr.smithi073.msdoog (mgr.14182) 540 : cluster [DBG] pgmap v344: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:11.627 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:35:11.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:11 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:35:10.251471+0000 mgr.smithi073.msdoog (mgr.14182) 541 : audit [DBG] from='client.15260 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:11.977 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:11 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:35:10.251471+0000 mgr.smithi073.msdoog (mgr.14182) 541 : audit [DBG] from='client.15260 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:12.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:12 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:35:11.642603+0000 mgr.smithi073.msdoog (mgr.14182) 542 : cluster [DBG] pgmap v345: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:12.994 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:35:12.994 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:35:13.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:12 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:35:11.642603+0000 mgr.smithi073.msdoog (mgr.14182) 542 : cluster [DBG] pgmap v345: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:13.366 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:35:14.367 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:35:15.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:14 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:35:12.995395+0000 mgr.smithi073.msdoog (mgr.14182) 543 : audit [DBG] from='client.15264 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:15.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:14 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:35:13.643362+0000 mgr.smithi073.msdoog (mgr.14182) 544 : cluster [DBG] pgmap v346: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:35:15.044 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:14 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:35:12.995395+0000 mgr.smithi073.msdoog (mgr.14182) 543 : audit [DBG] from='client.15264 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:15.045 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:14 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:35:13.643362+0000 mgr.smithi073.msdoog (mgr.14182) 544 : cluster [DBG] pgmap v346: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:35:15.708 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:35:15.708 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:35:16.081 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:35:17.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:35:15.643936+0000 mgr.smithi073.msdoog (mgr.14182) 545 : cluster [DBG] pgmap v347: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:17.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:35:15.709403+0000 mgr.smithi073.msdoog (mgr.14182) 546 : audit [DBG] from='client.15268 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:17.059 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:35:15.643936+0000 mgr.smithi073.msdoog (mgr.14182) 545 : cluster [DBG] pgmap v347: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:17.059 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:35:15.709403+0000 mgr.smithi073.msdoog (mgr.14182) 546 : audit [DBG] from='client.15268 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:17.083 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:35:18.392 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:35:18.392 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:39.394247Z service:ingress.nfs.foo [INFO] \"service was created\"", "2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:35:18.765 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:35:19.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:18 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:35:17.644877+0000 mgr.smithi073.msdoog (mgr.14182) 547 : cluster [DBG] pgmap v348: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:19.059 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:18 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:35:17.644877+0000 mgr.smithi073.msdoog (mgr.14182) 547 : cluster [DBG] pgmap v348: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:19.766 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:35:19.793 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:19 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:35:18.392961+0000 mgr.smithi073.msdoog (mgr.14182) 548 : audit [DBG] from='client.15272 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:19.794 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:19 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:35:19.499715+0000 mon.smithi073 (mon.0) 680 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi186.xyxgnw"}]: dispatch 2024-01-27T23:35:20.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:19 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:35:18.392961+0000 mgr.smithi073.msdoog (mgr.14182) 548 : audit [DBG] from='client.15272 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:20.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:19 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:35:19.499715+0000 mon.smithi073 (mon.0) 680 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi186.xyxgnw"}]: dispatch 2024-01-27T23:35:21.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:35:19.499115+0000 mgr.smithi073.msdoog (mgr.14182) 549 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw 2024-01-27T23:35:21.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw 2024-01-27T23:35:21.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw 2024-01-27T23:35:21.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw 2024-01-27T23:35:21.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Deploy daemon haproxy.nfs.foo.smithi186.xyxgnw ... 2024-01-27T23:35:21.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:35:21.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2024-01-27T23:35:21.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:33:26Z" level=warning msg="Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:35:21.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:34:04Z" level=warning msg="Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:35:21.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:34:41Z" level=warning msg="Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:35:21.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2024-01-27T23:35:21.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:35:21.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Traceback (most recent call last): 2024-01-27T23:35:21.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:35:21.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: yield (conn, connr) 2024-01-27T23:35:21.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:35:21.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: code, '\n'.join(err))) 2024-01-27T23:35:21.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw 2024-01-27T23:35:21.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw 2024-01-27T23:35:21.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw 2024-01-27T23:35:21.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw 2024-01-27T23:35:21.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Deploy daemon haproxy.nfs.foo.smithi186.xyxgnw ... 2024-01-27T23:35:21.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:35:21.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2024-01-27T23:35:21.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:33:26Z" level=warning msg="Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:35:21.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:34:04Z" level=warning msg="Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:35:21.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:34:41Z" level=warning msg="Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:35:21.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2024-01-27T23:35:21.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:35:21.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:35:19.499342+0000 mgr.smithi073.msdoog (mgr.14182) 550 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi186.xyxgnw 2024-01-27T23:35:21.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:35:19.500455+0000 mgr.smithi073.msdoog (mgr.14182) 551 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw 2024-01-27T23:35:21.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw 2024-01-27T23:35:21.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw 2024-01-27T23:35:21.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw 2024-01-27T23:35:21.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Deploy daemon haproxy.nfs.foo.smithi186.xyxgnw ... 2024-01-27T23:35:21.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:35:21.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2024-01-27T23:35:21.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:33:26Z" level=warning msg="Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:35:21.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:34:04Z" level=warning msg="Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:35:21.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:34:41Z" level=warning msg="Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:35:21.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2024-01-27T23:35:21.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:35:21.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:35:19.502115+0000 mgr.smithi073.msdoog (mgr.14182) 552 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi073.jqksqs on smithi073 2024-01-27T23:35:21.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:35:19.645474+0000 mgr.smithi073.msdoog (mgr.14182) 553 : cluster [DBG] pgmap v349: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:21.058 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:35:21.058 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:35:21.059 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:35:19.499115+0000 mgr.smithi073.msdoog (mgr.14182) 549 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw 2024-01-27T23:35:21.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw 2024-01-27T23:35:21.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw 2024-01-27T23:35:21.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw 2024-01-27T23:35:21.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Deploy daemon haproxy.nfs.foo.smithi186.xyxgnw ... 2024-01-27T23:35:21.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:35:21.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2024-01-27T23:35:21.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:33:26Z" level=warning msg="Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:35:21.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:34:04Z" level=warning msg="Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:35:21.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:34:41Z" level=warning msg="Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:35:21.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2024-01-27T23:35:21.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:35:21.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Traceback (most recent call last): 2024-01-27T23:35:21.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:35:21.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: yield (conn, connr) 2024-01-27T23:35:21.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:35:21.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: code, '\n'.join(err))) 2024-01-27T23:35:21.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw 2024-01-27T23:35:21.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw 2024-01-27T23:35:21.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw 2024-01-27T23:35:21.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw 2024-01-27T23:35:21.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Deploy daemon haproxy.nfs.foo.smithi186.xyxgnw ... 2024-01-27T23:35:21.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:35:21.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2024-01-27T23:35:21.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:33:26Z" level=warning msg="Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:35:21.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:34:04Z" level=warning msg="Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:35:21.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:34:41Z" level=warning msg="Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:35:21.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2024-01-27T23:35:21.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:35:21.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:35:19.499342+0000 mgr.smithi073.msdoog (mgr.14182) 550 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi186.xyxgnw 2024-01-27T23:35:21.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:35:19.500455+0000 mgr.smithi073.msdoog (mgr.14182) 551 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw 2024-01-27T23:35:21.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw 2024-01-27T23:35:21.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw 2024-01-27T23:35:21.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw 2024-01-27T23:35:21.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Deploy daemon haproxy.nfs.foo.smithi186.xyxgnw ... 2024-01-27T23:35:21.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:35:21.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2024-01-27T23:35:21.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:33:26Z" level=warning msg="Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:35:21.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:34:04Z" level=warning msg="Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:35:21.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:34:41Z" level=warning msg="Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:35:21.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2024-01-27T23:35:21.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:35:21.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:35:19.502115+0000 mgr.smithi073.msdoog (mgr.14182) 552 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi073.jqksqs on smithi073 2024-01-27T23:35:21.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:35:19.645474+0000 mgr.smithi073.msdoog (mgr.14182) 553 : cluster [DBG] pgmap v349: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:21.431 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:35:22.432 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:35:22.767 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:22 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:35:21.058558+0000 mgr.smithi073.msdoog (mgr.14182) 554 : audit [DBG] from='client.15276 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:22.767 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:22 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:35:21.645996+0000 mgr.smithi073.msdoog (mgr.14182) 555 : cluster [DBG] pgmap v350: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:23.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:22 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:35:21.058558+0000 mgr.smithi073.msdoog (mgr.14182) 554 : audit [DBG] from='client.15276 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:23.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:22 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:35:21.645996+0000 mgr.smithi073.msdoog (mgr.14182) 555 : cluster [DBG] pgmap v350: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:23.748 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:35:23.748 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:35:24.131 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:35:25.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:35:23.646649+0000 mgr.smithi073.msdoog (mgr.14182) 556 : cluster [DBG] pgmap v351: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:35:25.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:35:23.749533+0000 mgr.smithi073.msdoog (mgr.14182) 557 : audit [DBG] from='client.15280 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:25.059 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:35:23.646649+0000 mgr.smithi073.msdoog (mgr.14182) 556 : cluster [DBG] pgmap v351: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:35:25.059 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:35:23.749533+0000 mgr.smithi073.msdoog (mgr.14182) 557 : audit [DBG] from='client.15280 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:25.132 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:35:26.450 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:35:26.450 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:35:26.721 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:26 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:35:25.647314+0000 mgr.smithi073.msdoog (mgr.14182) 558 : cluster [DBG] pgmap v352: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:26.831 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:35:27.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:26 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:35:25.647314+0000 mgr.smithi073.msdoog (mgr.14182) 558 : cluster [DBG] pgmap v352: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:27.831 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:35:28.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:27 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:35:26.450764+0000 mgr.smithi073.msdoog (mgr.14182) 559 : audit [DBG] from='client.15284 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:28.059 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:27 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:35:26.450764+0000 mgr.smithi073.msdoog (mgr.14182) 559 : audit [DBG] from='client.15284 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:28.794 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:35:27.648451+0000 mgr.smithi073.msdoog (mgr.14182) 560 : cluster [DBG] pgmap v353: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:29.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:35:27.648451+0000 mgr.smithi073.msdoog (mgr.14182) 560 : cluster [DBG] pgmap v353: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:29.155 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:35:29.156 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:35:29.522 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:35:30.522 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:35:30.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:30 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:35:29.157018+0000 mgr.smithi073.msdoog (mgr.14182) 561 : audit [DBG] from='client.15288 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:30.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:30 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:35:29.649177+0000 mgr.smithi073.msdoog (mgr.14182) 562 : cluster [DBG] pgmap v354: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:31.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:30 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:35:29.157018+0000 mgr.smithi073.msdoog (mgr.14182) 561 : audit [DBG] from='client.15288 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:31.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:30 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:35:29.649177+0000 mgr.smithi073.msdoog (mgr.14182) 562 : cluster [DBG] pgmap v354: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:31.873 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:35:31.873 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:35:32.237 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:35:33.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:32 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:35:31.649716+0000 mgr.smithi073.msdoog (mgr.14182) 563 : cluster [DBG] pgmap v355: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:33.059 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:32 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:35:31.649716+0000 mgr.smithi073.msdoog (mgr.14182) 563 : cluster [DBG] pgmap v355: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:33.239 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:35:33.866 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:33 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:35:31.874160+0000 mgr.smithi073.msdoog (mgr.14182) 564 : audit [DBG] from='client.15292 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:34.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:33 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:35:31.874160+0000 mgr.smithi073.msdoog (mgr.14182) 564 : audit [DBG] from='client.15292 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:34.541 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:35:34.542 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:35:34.828 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:34 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:35:33.650509+0000 mgr.smithi073.msdoog (mgr.14182) 565 : cluster [DBG] pgmap v356: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:35:34.938 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:35:35.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:34 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:35:33.650509+0000 mgr.smithi073.msdoog (mgr.14182) 565 : cluster [DBG] pgmap v356: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:35:35.939 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:35:35.970 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:35 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:35:34.542554+0000 mgr.smithi073.msdoog (mgr.14182) 566 : audit [DBG] from='client.15296 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:36.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:35 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:35:34.542554+0000 mgr.smithi073.msdoog (mgr.14182) 566 : audit [DBG] from='client.15296 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:36.924 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:36 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:35:35.651128+0000 mgr.smithi073.msdoog (mgr.14182) 567 : cluster [DBG] pgmap v357: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:37.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:36 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:35:35.651128+0000 mgr.smithi073.msdoog (mgr.14182) 567 : cluster [DBG] pgmap v357: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:37.282 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:35:37.282 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:35:37.662 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:35:38.663 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:35:39.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:38 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:35:37.283069+0000 mgr.smithi073.msdoog (mgr.14182) 568 : audit [DBG] from='client.15300 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:39.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:38 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:35:37.651871+0000 mgr.smithi073.msdoog (mgr.14182) 569 : cluster [DBG] pgmap v358: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:39.015 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:38 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:35:37.283069+0000 mgr.smithi073.msdoog (mgr.14182) 568 : audit [DBG] from='client.15300 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:39.015 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:38 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:35:37.651871+0000 mgr.smithi073.msdoog (mgr.14182) 569 : cluster [DBG] pgmap v358: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:40.029 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:35:40.029 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:35:40.403 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:35:40.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:40 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:35:39.652413+0000 mgr.smithi073.msdoog (mgr.14182) 570 : cluster [DBG] pgmap v359: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:41.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:40 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:35:39.652413+0000 mgr.smithi073.msdoog (mgr.14182) 570 : cluster [DBG] pgmap v359: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:41.404 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:35:41.739 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:41 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:35:40.030284+0000 mgr.smithi073.msdoog (mgr.14182) 571 : audit [DBG] from='client.15304 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:41.977 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:41 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:35:40.030284+0000 mgr.smithi073.msdoog (mgr.14182) 571 : audit [DBG] from='client.15304 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:42.741 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:35:42.741 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:35:42.761 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:42 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:35:41.652950+0000 mgr.smithi073.msdoog (mgr.14182) 572 : cluster [DBG] pgmap v360: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:43.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:42 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:35:41.652950+0000 mgr.smithi073.msdoog (mgr.14182) 572 : cluster [DBG] pgmap v360: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:43.120 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:35:44.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:43 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:35:42.741968+0000 mgr.smithi073.msdoog (mgr.14182) 573 : audit [DBG] from='client.15308 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:44.059 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:43 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:35:42.741968+0000 mgr.smithi073.msdoog (mgr.14182) 573 : audit [DBG] from='client.15308 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:44.121 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:35:44.810 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:35:43.653785+0000 mgr.smithi073.msdoog (mgr.14182) 574 : cluster [DBG] pgmap v361: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:35:45.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:44 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:35:43.653785+0000 mgr.smithi073.msdoog (mgr.14182) 574 : cluster [DBG] pgmap v361: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:35:45.481 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:35:45.481 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:35:45.861 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:35:46.861 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:35:47.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:35:45.482184+0000 mgr.smithi073.msdoog (mgr.14182) 575 : audit [DBG] from='client.15312 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:47.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:35:45.654403+0000 mgr.smithi073.msdoog (mgr.14182) 576 : cluster [DBG] pgmap v362: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:47.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:35:45.482184+0000 mgr.smithi073.msdoog (mgr.14182) 575 : audit [DBG] from='client.15312 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:47.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:35:45.654403+0000 mgr.smithi073.msdoog (mgr.14182) 576 : cluster [DBG] pgmap v362: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:48.208 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:35:48.208 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:35:48.577 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:35:48.809 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:48 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:35:47.655168+0000 mgr.smithi073.msdoog (mgr.14182) 577 : cluster [DBG] pgmap v363: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:49.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:48 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:35:47.655168+0000 mgr.smithi073.msdoog (mgr.14182) 577 : cluster [DBG] pgmap v363: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:49.578 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:35:49.922 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:49 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:35:48.208712+0000 mgr.smithi073.msdoog (mgr.14182) 578 : audit [DBG] from='client.15316 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:50.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:49 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:35:48.208712+0000 mgr.smithi073.msdoog (mgr.14182) 578 : audit [DBG] from='client.15316 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:50.979 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:35:50.979 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:35:51.001 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:35:49.655945+0000 mgr.smithi073.msdoog (mgr.14182) 579 : cluster [DBG] pgmap v364: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:51.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:35:49.655945+0000 mgr.smithi073.msdoog (mgr.14182) 579 : cluster [DBG] pgmap v364: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:51.369 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:35:52.370 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:35:52.972 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:52 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:35:50.979993+0000 mgr.smithi073.msdoog (mgr.14182) 580 : audit [DBG] from='client.15320 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:52.973 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:52 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:35:51.656749+0000 mgr.smithi073.msdoog (mgr.14182) 581 : cluster [DBG] pgmap v365: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:53.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:52 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:35:50.979993+0000 mgr.smithi073.msdoog (mgr.14182) 580 : audit [DBG] from='client.15320 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:53.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:52 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:35:51.656749+0000 mgr.smithi073.msdoog (mgr.14182) 581 : cluster [DBG] pgmap v365: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:53.678 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:35:53.679 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:35:54.069 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:35:55.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:54 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:35:53.657350+0000 mgr.smithi073.msdoog (mgr.14182) 582 : cluster [DBG] pgmap v366: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:35:55.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:54 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:35:53.679631+0000 mgr.smithi073.msdoog (mgr.14182) 583 : audit [DBG] from='client.15324 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:55.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:54 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:35:53.657350+0000 mgr.smithi073.msdoog (mgr.14182) 582 : cluster [DBG] pgmap v366: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:35:55.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:54 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:35:53.679631+0000 mgr.smithi073.msdoog (mgr.14182) 583 : audit [DBG] from='client.15324 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:55.070 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:35:56.386 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:35:56.386 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:35:56.760 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:35:57.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:56 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:35:55.658131+0000 mgr.smithi073.msdoog (mgr.14182) 584 : cluster [DBG] pgmap v367: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:57.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:56 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:35:55.658131+0000 mgr.smithi073.msdoog (mgr.14182) 584 : cluster [DBG] pgmap v367: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:57.761 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:35:58.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:57 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:35:56.387090+0000 mgr.smithi073.msdoog (mgr.14182) 585 : audit [DBG] from='client.15328 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:58.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:57 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:35:56.387090+0000 mgr.smithi073.msdoog (mgr.14182) 585 : audit [DBG] from='client.15328 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:35:59.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:35:58 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:35:57.659210+0000 mgr.smithi073.msdoog (mgr.14182) 586 : cluster [DBG] pgmap v368: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:59.059 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:35:58 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:35:57.659210+0000 mgr.smithi073.msdoog (mgr.14182) 586 : cluster [DBG] pgmap v368: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:35:59.078 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:35:59.078 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:35:59.468 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:36:00.469 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:36:00.810 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:00 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:35:59.079069+0000 mgr.smithi073.msdoog (mgr.14182) 587 : audit [DBG] from='client.15332 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:00.810 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:00 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:35:59.659857+0000 mgr.smithi073.msdoog (mgr.14182) 588 : cluster [DBG] pgmap v369: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:01.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:00 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:35:59.079069+0000 mgr.smithi073.msdoog (mgr.14182) 587 : audit [DBG] from='client.15332 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:01.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:00 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:35:59.659857+0000 mgr.smithi073.msdoog (mgr.14182) 588 : cluster [DBG] pgmap v369: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:01.895 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:36:01.895 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:36:02.293 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:36:03.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:02 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:36:01.660350+0000 mgr.smithi073.msdoog (mgr.14182) 589 : cluster [DBG] pgmap v370: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:03.059 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:02 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:36:01.660350+0000 mgr.smithi073.msdoog (mgr.14182) 589 : cluster [DBG] pgmap v370: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:03.293 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:36:04.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:03 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:36:01.895795+0000 mgr.smithi073.msdoog (mgr.14182) 590 : audit [DBG] from='client.15336 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:04.020 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:03 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:36:01.895795+0000 mgr.smithi073.msdoog (mgr.14182) 590 : audit [DBG] from='client.15336 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:04.697 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:36:04.697 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:36:05.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:04 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:36:03.661125+0000 mgr.smithi073.msdoog (mgr.14182) 591 : cluster [DBG] pgmap v371: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:36:05.057 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:04 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:36:03.661125+0000 mgr.smithi073.msdoog (mgr.14182) 591 : cluster [DBG] pgmap v371: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:36:05.109 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:36:06.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:05 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:36:04.698344+0000 mgr.smithi073.msdoog (mgr.14182) 592 : audit [DBG] from='client.15340 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:06.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:05 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:36:04.698344+0000 mgr.smithi073.msdoog (mgr.14182) 592 : audit [DBG] from='client.15340 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:06.110 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:36:07.009 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:06 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:36:05.662013+0000 mgr.smithi073.msdoog (mgr.14182) 593 : cluster [DBG] pgmap v372: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:07.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:06 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:36:05.662013+0000 mgr.smithi073.msdoog (mgr.14182) 593 : cluster [DBG] pgmap v372: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:07.502 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:36:07.503 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:36:07.875 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:36:08.876 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:36:09.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:08 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:36:07.503092+0000 mgr.smithi073.msdoog (mgr.14182) 594 : audit [DBG] from='client.15344 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:09.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:08 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:36:07.662979+0000 mgr.smithi073.msdoog (mgr.14182) 595 : cluster [DBG] pgmap v373: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:09.059 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:08 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:36:07.503092+0000 mgr.smithi073.msdoog (mgr.14182) 594 : audit [DBG] from='client.15344 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:09.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:08 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:36:07.662979+0000 mgr.smithi073.msdoog (mgr.14182) 595 : cluster [DBG] pgmap v373: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:10.193 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:36:10.194 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:36:10.567 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:36:10.810 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:10 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:36:09.663537+0000 mgr.smithi073.msdoog (mgr.14182) 596 : cluster [DBG] pgmap v374: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:11.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:10 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:36:09.663537+0000 mgr.smithi073.msdoog (mgr.14182) 596 : cluster [DBG] pgmap v374: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:11.568 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:36:11.918 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:11 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:36:10.194803+0000 mgr.smithi073.msdoog (mgr.14182) 597 : audit [DBG] from='client.15348 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:11.977 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:11 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:36:10.194803+0000 mgr.smithi073.msdoog (mgr.14182) 597 : audit [DBG] from='client.15348 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:12.958 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:36:12.958 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:36:12.985 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:12 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:36:11.664247+0000 mgr.smithi073.msdoog (mgr.14182) 598 : cluster [DBG] pgmap v375: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:13.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:12 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:36:11.664247+0000 mgr.smithi073.msdoog (mgr.14182) 598 : cluster [DBG] pgmap v375: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:13.359 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:36:14.360 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:36:15.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:14 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:36:12.958855+0000 mgr.smithi073.msdoog (mgr.14182) 599 : audit [DBG] from='client.15352 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:15.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:14 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:36:13.665071+0000 mgr.smithi073.msdoog (mgr.14182) 600 : cluster [DBG] pgmap v376: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:36:15.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:14 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:36:12.958855+0000 mgr.smithi073.msdoog (mgr.14182) 599 : audit [DBG] from='client.15352 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:15.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:14 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:36:13.665071+0000 mgr.smithi073.msdoog (mgr.14182) 600 : cluster [DBG] pgmap v376: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:36:15.770 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:36:15.770 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:36:16.140 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:36:17.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:36:15.665780+0000 mgr.smithi073.msdoog (mgr.14182) 601 : cluster [DBG] pgmap v377: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:17.039 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:36:15.770878+0000 mgr.smithi073.msdoog (mgr.14182) 602 : audit [DBG] from='client.15356 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:17.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:36:15.665780+0000 mgr.smithi073.msdoog (mgr.14182) 601 : cluster [DBG] pgmap v377: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:17.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:36:15.770878+0000 mgr.smithi073.msdoog (mgr.14182) 602 : audit [DBG] from='client.15356 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:17.141 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:36:18.400 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:36:18.401 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:36:18.781 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:36:19.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:18 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:36:17.666548+0000 mgr.smithi073.msdoog (mgr.14182) 603 : cluster [DBG] pgmap v378: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:19.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:18 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:36:17.666548+0000 mgr.smithi073.msdoog (mgr.14182) 603 : cluster [DBG] pgmap v378: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:19.781 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:36:20.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:19 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:36:18.401159+0000 mgr.smithi073.msdoog (mgr.14182) 604 : audit [DBG] from='client.15360 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:20.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:19 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:36:18.401159+0000 mgr.smithi073.msdoog (mgr.14182) 604 : audit [DBG] from='client.15360 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:21.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:36:19.667209+0000 mgr.smithi073.msdoog (mgr.14182) 605 : cluster [DBG] pgmap v379: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:21.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:36:19.667209+0000 mgr.smithi073.msdoog (mgr.14182) 605 : cluster [DBG] pgmap v379: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:21.087 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:36:21.087 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:36:21.432 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:36:22.432 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:36:23.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:22 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:36:21.087984+0000 mgr.smithi073.msdoog (mgr.14182) 606 : audit [DBG] from='client.15364 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:23.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:22 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:36:21.668002+0000 mgr.smithi073.msdoog (mgr.14182) 607 : cluster [DBG] pgmap v380: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:23.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:22 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:36:21.087984+0000 mgr.smithi073.msdoog (mgr.14182) 606 : audit [DBG] from='client.15364 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:23.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:22 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:36:21.668002+0000 mgr.smithi073.msdoog (mgr.14182) 607 : cluster [DBG] pgmap v380: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:23.758 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:36:23.759 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:36:24.131 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:36:25.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:36:23.668617+0000 mgr.smithi073.msdoog (mgr.14182) 608 : cluster [DBG] pgmap v381: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:36:25.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:36:23.758964+0000 mgr.smithi073.msdoog (mgr.14182) 609 : audit [DBG] from='client.15368 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:25.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:36:23.668617+0000 mgr.smithi073.msdoog (mgr.14182) 608 : cluster [DBG] pgmap v381: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:36:25.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:36:23.758964+0000 mgr.smithi073.msdoog (mgr.14182) 609 : audit [DBG] from='client.15368 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:25.132 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:36:26.481 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:36:26.481 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:36:26.780 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:26 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:36:25.669298+0000 mgr.smithi073.msdoog (mgr.14182) 610 : cluster [DBG] pgmap v382: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:26.847 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:36:27.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:26 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:36:25.669298+0000 mgr.smithi073.msdoog (mgr.14182) 610 : cluster [DBG] pgmap v382: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:27.848 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:36:28.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:27 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:36:26.481689+0000 mgr.smithi073.msdoog (mgr.14182) 611 : audit [DBG] from='client.15372 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:28.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:27 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:36:26.481689+0000 mgr.smithi073.msdoog (mgr.14182) 611 : audit [DBG] from='client.15372 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:29.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:36:27.670202+0000 mgr.smithi073.msdoog (mgr.14182) 612 : cluster [DBG] pgmap v383: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:29.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:36:27.670202+0000 mgr.smithi073.msdoog (mgr.14182) 612 : cluster [DBG] pgmap v383: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:29.163 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:36:29.163 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:36:29.531 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:36:30.532 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:36:30.874 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:30 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:36:29.164261+0000 mgr.smithi073.msdoog (mgr.14182) 613 : audit [DBG] from='client.15376 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:30.875 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:30 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:36:29.670841+0000 mgr.smithi073.msdoog (mgr.14182) 614 : cluster [DBG] pgmap v384: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:31.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:30 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:36:29.164261+0000 mgr.smithi073.msdoog (mgr.14182) 613 : audit [DBG] from='client.15376 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:31.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:30 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:36:29.670841+0000 mgr.smithi073.msdoog (mgr.14182) 614 : cluster [DBG] pgmap v384: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:31.988 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:36:31.988 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:36:32.363 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:36:33.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:32 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:36:31.671600+0000 mgr.smithi073.msdoog (mgr.14182) 615 : cluster [DBG] pgmap v385: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:33.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:32 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:36:31.671600+0000 mgr.smithi073.msdoog (mgr.14182) 615 : cluster [DBG] pgmap v385: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:33.364 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:36:34.009 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:33 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:36:31.989146+0000 mgr.smithi073.msdoog (mgr.14182) 616 : audit [DBG] from='client.15380 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:34.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:33 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:36:31.989146+0000 mgr.smithi073.msdoog (mgr.14182) 616 : audit [DBG] from='client.15380 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:34.710 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:36:34.710 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:36:35.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:34 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:36:33.672186+0000 mgr.smithi073.msdoog (mgr.14182) 617 : cluster [DBG] pgmap v386: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:36:35.011 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:34 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:36:33.672186+0000 mgr.smithi073.msdoog (mgr.14182) 617 : cluster [DBG] pgmap v386: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:36:35.087 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:36:36.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:35 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:36:34.708060+0000 mgr.smithi073.msdoog (mgr.14182) 618 : audit [DBG] from='client.15384 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:36.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:35 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:36:34.708060+0000 mgr.smithi073.msdoog (mgr.14182) 618 : audit [DBG] from='client.15384 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:36.088 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:36:37.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:36 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:36:35.672873+0000 mgr.smithi073.msdoog (mgr.14182) 619 : cluster [DBG] pgmap v387: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:37.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:36 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:36:35.672873+0000 mgr.smithi073.msdoog (mgr.14182) 619 : cluster [DBG] pgmap v387: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:37.486 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:36:37.487 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:36:37.801 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:36:38.802 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:36:39.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:38 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:36:37.487213+0000 mgr.smithi073.msdoog (mgr.14182) 620 : audit [DBG] from='client.15388 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:39.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:38 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:36:37.673591+0000 mgr.smithi073.msdoog (mgr.14182) 621 : cluster [DBG] pgmap v388: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:39.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:38 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:36:37.487213+0000 mgr.smithi073.msdoog (mgr.14182) 620 : audit [DBG] from='client.15388 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:39.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:38 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:36:37.673591+0000 mgr.smithi073.msdoog (mgr.14182) 621 : cluster [DBG] pgmap v388: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:40.157 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:36:40.157 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:36:40.613 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:36:41.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:40 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:36:39.674196+0000 mgr.smithi073.msdoog (mgr.14182) 622 : cluster [DBG] pgmap v389: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:41.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:40 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:36:39.674196+0000 mgr.smithi073.msdoog (mgr.14182) 622 : cluster [DBG] pgmap v389: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:41.614 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:36:41.931 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:41 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:36:40.157389+0000 mgr.smithi073.msdoog (mgr.14182) 623 : audit [DBG] from='client.15392 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:41.977 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:41 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:36:40.157389+0000 mgr.smithi073.msdoog (mgr.14182) 623 : audit [DBG] from='client.15392 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:42.810 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:42 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:36:41.674875+0000 mgr.smithi073.msdoog (mgr.14182) 624 : cluster [DBG] pgmap v390: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:42.907 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:36:42.907 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:36:43.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:42 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:36:41.674875+0000 mgr.smithi073.msdoog (mgr.14182) 624 : cluster [DBG] pgmap v390: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:43.288 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:36:44.289 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:36:45.007 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:36:42.907861+0000 mgr.smithi073.msdoog (mgr.14182) 625 : audit [DBG] from='client.15396 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:45.007 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:36:43.675536+0000 mgr.smithi073.msdoog (mgr.14182) 626 : cluster [DBG] pgmap v391: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:36:45.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:44 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:36:42.907861+0000 mgr.smithi073.msdoog (mgr.14182) 625 : audit [DBG] from='client.15396 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:45.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:44 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:36:43.675536+0000 mgr.smithi073.msdoog (mgr.14182) 626 : cluster [DBG] pgmap v391: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:36:45.696 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:36:45.696 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:36:46.086 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:36:47.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:36:45.676138+0000 mgr.smithi073.msdoog (mgr.14182) 627 : cluster [DBG] pgmap v392: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:47.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:36:45.696526+0000 mgr.smithi073.msdoog (mgr.14182) 628 : audit [DBG] from='client.15400 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:47.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:36:45.676138+0000 mgr.smithi073.msdoog (mgr.14182) 627 : cluster [DBG] pgmap v392: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:47.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:36:45.696526+0000 mgr.smithi073.msdoog (mgr.14182) 628 : audit [DBG] from='client.15400 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:47.087 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:36:48.402 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:36:48.402 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:36:48.769 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:36:49.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:48 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:36:47.676962+0000 mgr.smithi073.msdoog (mgr.14182) 629 : cluster [DBG] pgmap v393: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:49.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:48 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:36:47.676962+0000 mgr.smithi073.msdoog (mgr.14182) 629 : cluster [DBG] pgmap v393: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:49.771 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:36:50.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:49 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:36:48.402134+0000 mgr.smithi073.msdoog (mgr.14182) 630 : audit [DBG] from='client.15404 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:50.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:49 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:36:48.402134+0000 mgr.smithi073.msdoog (mgr.14182) 630 : audit [DBG] from='client.15404 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:51.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:36:49.677646+0000 mgr.smithi073.msdoog (mgr.14182) 631 : cluster [DBG] pgmap v394: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:51.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:36:49.677646+0000 mgr.smithi073.msdoog (mgr.14182) 631 : cluster [DBG] pgmap v394: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:51.083 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:36:51.083 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:36:51.468 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:36:52.469 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:36:52.795 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:52 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:36:51.084039+0000 mgr.smithi073.msdoog (mgr.14182) 632 : audit [DBG] from='client.15408 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:52.796 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:52 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:36:51.678403+0000 mgr.smithi073.msdoog (mgr.14182) 633 : cluster [DBG] pgmap v395: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:53.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:52 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:36:51.084039+0000 mgr.smithi073.msdoog (mgr.14182) 632 : audit [DBG] from='client.15408 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:53.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:52 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:36:51.678403+0000 mgr.smithi073.msdoog (mgr.14182) 633 : cluster [DBG] pgmap v395: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:53.787 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:36:53.787 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:36:54.160 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:36:55.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:54 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:36:53.678990+0000 mgr.smithi073.msdoog (mgr.14182) 634 : cluster [DBG] pgmap v396: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:36:55.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:54 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:36:53.787075+0000 mgr.smithi073.msdoog (mgr.14182) 635 : audit [DBG] from='client.15412 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:55.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:54 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:36:53.678990+0000 mgr.smithi073.msdoog (mgr.14182) 634 : cluster [DBG] pgmap v396: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:36:55.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:54 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:36:53.787075+0000 mgr.smithi073.msdoog (mgr.14182) 635 : audit [DBG] from='client.15412 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:55.161 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:36:56.451 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:36:56.451 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:36:56.819 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:36:57.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:56 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:36:55.679763+0000 mgr.smithi073.msdoog (mgr.14182) 636 : cluster [DBG] pgmap v397: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:57.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:56 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:36:55.679763+0000 mgr.smithi073.msdoog (mgr.14182) 636 : cluster [DBG] pgmap v397: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:57.819 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:36:58.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:57 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:36:56.451488+0000 mgr.smithi073.msdoog (mgr.14182) 637 : audit [DBG] from='client.15416 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:58.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:57 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:36:56.451488+0000 mgr.smithi073.msdoog (mgr.14182) 637 : audit [DBG] from='client.15416 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:36:59.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:36:58 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:36:57.680813+0000 mgr.smithi073.msdoog (mgr.14182) 638 : cluster [DBG] pgmap v398: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:59.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:36:58 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:36:57.680813+0000 mgr.smithi073.msdoog (mgr.14182) 638 : cluster [DBG] pgmap v398: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:36:59.094 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:36:59.094 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:36:59.477 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:37:00.479 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:37:00.810 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:00 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:36:59.094414+0000 mgr.smithi073.msdoog (mgr.14182) 639 : audit [DBG] from='client.15420 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:00.810 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:00 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:36:59.681577+0000 mgr.smithi073.msdoog (mgr.14182) 640 : cluster [DBG] pgmap v399: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:37:01.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:00 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:36:59.094414+0000 mgr.smithi073.msdoog (mgr.14182) 639 : audit [DBG] from='client.15420 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:01.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:00 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:36:59.681577+0000 mgr.smithi073.msdoog (mgr.14182) 640 : cluster [DBG] pgmap v399: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:37:01.811 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:37:01.812 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:37:02.184 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:37:03.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:02 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:37:01.682126+0000 mgr.smithi073.msdoog (mgr.14182) 641 : cluster [DBG] pgmap v400: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:37:03.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:02 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:37:01.812040+0000 mgr.smithi073.msdoog (mgr.14182) 642 : audit [DBG] from='client.15424 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:03.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:02 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:37:01.682126+0000 mgr.smithi073.msdoog (mgr.14182) 641 : cluster [DBG] pgmap v400: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:37:03.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:02 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:37:01.812040+0000 mgr.smithi073.msdoog (mgr.14182) 642 : audit [DBG] from='client.15424 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:03.185 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:37:04.475 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:37:04.475 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:37:04.782 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:04 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:37:03.682893+0000 mgr.smithi073.msdoog (mgr.14182) 643 : cluster [DBG] pgmap v401: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:37:04.859 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:37:05.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:04 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:37:03.682893+0000 mgr.smithi073.msdoog (mgr.14182) 643 : cluster [DBG] pgmap v401: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:37:05.860 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:37:06.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:05 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:37:04.474867+0000 mgr.smithi073.msdoog (mgr.14182) 644 : audit [DBG] from='client.15428 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:06.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:05 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:37:04.474867+0000 mgr.smithi073.msdoog (mgr.14182) 644 : audit [DBG] from='client.15428 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:07.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:06 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:37:05.683692+0000 mgr.smithi073.msdoog (mgr.14182) 645 : cluster [DBG] pgmap v402: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:37:07.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:06 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:37:05.683692+0000 mgr.smithi073.msdoog (mgr.14182) 645 : cluster [DBG] pgmap v402: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:37:07.216 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:37:07.216 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:37:07.634 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:37:08.635 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:37:08.976 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:08 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:37:07.216353+0000 mgr.smithi073.msdoog (mgr.14182) 646 : audit [DBG] from='client.15432 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:08.976 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:08 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:37:07.684424+0000 mgr.smithi073.msdoog (mgr.14182) 647 : cluster [DBG] pgmap v403: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:37:09.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:08 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:37:07.216353+0000 mgr.smithi073.msdoog (mgr.14182) 646 : audit [DBG] from='client.15432 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:09.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:08 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:37:07.684424+0000 mgr.smithi073.msdoog (mgr.14182) 647 : cluster [DBG] pgmap v403: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:37:09.957 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:37:09.957 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:37:10.342 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:37:11.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:10 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:37:09.684977+0000 mgr.smithi073.msdoog (mgr.14182) 648 : cluster [DBG] pgmap v404: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:37:11.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:10 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:37:09.684977+0000 mgr.smithi073.msdoog (mgr.14182) 648 : cluster [DBG] pgmap v404: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:37:11.344 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:37:11.677 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:11 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:37:09.957460+0000 mgr.smithi073.msdoog (mgr.14182) 649 : audit [DBG] from='client.15436 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:11.978 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:11 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:37:09.957460+0000 mgr.smithi073.msdoog (mgr.14182) 649 : audit [DBG] from='client.15436 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:12.671 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:37:12.671 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:37:13.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:12 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:37:11.685471+0000 mgr.smithi073.msdoog (mgr.14182) 650 : cluster [DBG] pgmap v405: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:37:13.022 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:12 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:37:11.685471+0000 mgr.smithi073.msdoog (mgr.14182) 650 : cluster [DBG] pgmap v405: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:37:13.058 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:37:14.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:13 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:37:12.671852+0000 mgr.smithi073.msdoog (mgr.14182) 651 : audit [DBG] from='client.15440 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:14.060 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:37:14.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:13 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:37:12.671852+0000 mgr.smithi073.msdoog (mgr.14182) 651 : audit [DBG] from='client.15440 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:14.736 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:14 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:37:13.686167+0000 mgr.smithi073.msdoog (mgr.14182) 652 : cluster [DBG] pgmap v406: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:37:15.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:14 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:37:13.686167+0000 mgr.smithi073.msdoog (mgr.14182) 652 : cluster [DBG] pgmap v406: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:37:15.354 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:37:15.354 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:37:15.741 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:37:16.741 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:37:17.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:37:15.354339+0000 mgr.smithi073.msdoog (mgr.14182) 653 : audit [DBG] from='client.15444 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:17.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:37:15.686950+0000 mgr.smithi073.msdoog (mgr.14182) 654 : cluster [DBG] pgmap v407: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:37:17.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:37:15.354339+0000 mgr.smithi073.msdoog (mgr.14182) 653 : audit [DBG] from='client.15444 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:17.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:37:15.686950+0000 mgr.smithi073.msdoog (mgr.14182) 654 : cluster [DBG] pgmap v407: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:37:18.109 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:37:18.109 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:37:18.490 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:37:19.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:18 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:37:17.687956+0000 mgr.smithi073.msdoog (mgr.14182) 655 : cluster [DBG] pgmap v408: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:37:19.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:18 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:37:17.687956+0000 mgr.smithi073.msdoog (mgr.14182) 655 : cluster [DBG] pgmap v408: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:37:19.491 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:37:19.810 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:19 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:37:18.109263+0000 mgr.smithi073.msdoog (mgr.14182) 656 : audit [DBG] from='client.15448 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:20.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:19 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:37:18.109263+0000 mgr.smithi073.msdoog (mgr.14182) 656 : audit [DBG] from='client.15448 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:20.811 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:37:19.688527+0000 mgr.smithi073.msdoog (mgr.14182) 657 : cluster [DBG] pgmap v409: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:37:20.885 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:37:20.885 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:37:21.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:37:19.688527+0000 mgr.smithi073.msdoog (mgr.14182) 657 : cluster [DBG] pgmap v409: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:37:21.266 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:37:22.266 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:37:22.976 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:22 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:37:20.885687+0000 mgr.smithi073.msdoog (mgr.14182) 658 : audit [DBG] from='client.15452 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:22.976 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:22 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:37:21.689070+0000 mgr.smithi073.msdoog (mgr.14182) 659 : cluster [DBG] pgmap v410: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:37:23.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:22 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:37:20.885687+0000 mgr.smithi073.msdoog (mgr.14182) 658 : audit [DBG] from='client.15452 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:23.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:22 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:37:21.689070+0000 mgr.smithi073.msdoog (mgr.14182) 659 : cluster [DBG] pgmap v410: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:37:23.646 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:37:23.647 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:37:24.022 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:37:25.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:37:23.646155+0000 mgr.smithi073.msdoog (mgr.14182) 660 : audit [DBG] from='client.15456 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:25.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:37:23.689625+0000 mgr.smithi073.msdoog (mgr.14182) 661 : cluster [DBG] pgmap v411: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:37:25.023 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:37:25.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:37:23.646155+0000 mgr.smithi073.msdoog (mgr.14182) 660 : audit [DBG] from='client.15456 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:25.054 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:37:23.689625+0000 mgr.smithi073.msdoog (mgr.14182) 661 : cluster [DBG] pgmap v411: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:37:26.399 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:37:26.399 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:37:26.781 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:37:27.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:26 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:37:25.690237+0000 mgr.smithi073.msdoog (mgr.14182) 662 : cluster [DBG] pgmap v412: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:37:27.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:26 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:37:25.690237+0000 mgr.smithi073.msdoog (mgr.14182) 662 : cluster [DBG] pgmap v412: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:37:27.782 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:37:28.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:27 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:37:26.398773+0000 mgr.smithi073.msdoog (mgr.14182) 663 : audit [DBG] from='client.15460 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:28.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:27 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:37:26.398773+0000 mgr.smithi073.msdoog (mgr.14182) 663 : audit [DBG] from='client.15460 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:29.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:37:27.691239+0000 mgr.smithi073.msdoog (mgr.14182) 664 : cluster [DBG] pgmap v413: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:37:29.088 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:37:29.088 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:37:29.260 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:37:27.691239+0000 mgr.smithi073.msdoog (mgr.14182) 664 : cluster [DBG] pgmap v413: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:37:29.455 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:37:30.456 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:37:30.782 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:30 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:37:29.088541+0000 mgr.smithi073.msdoog (mgr.14182) 665 : audit [DBG] from='client.15464 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:30.782 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:30 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:37:29.692087+0000 mgr.smithi073.msdoog (mgr.14182) 666 : cluster [DBG] pgmap v414: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:37:31.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:30 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:37:29.088541+0000 mgr.smithi073.msdoog (mgr.14182) 665 : audit [DBG] from='client.15464 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:31.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:30 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:37:29.692087+0000 mgr.smithi073.msdoog (mgr.14182) 666 : cluster [DBG] pgmap v414: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:37:31.763 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:37:31.763 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:37:32.146 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:37:33.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:32 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:37:31.692718+0000 mgr.smithi073.msdoog (mgr.14182) 667 : cluster [DBG] pgmap v415: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:37:33.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:32 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:37:31.763407+0000 mgr.smithi073.msdoog (mgr.14182) 668 : audit [DBG] from='client.15468 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:33.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:32 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:37:31.692718+0000 mgr.smithi073.msdoog (mgr.14182) 667 : cluster [DBG] pgmap v415: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:37:33.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:32 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:37:31.763407+0000 mgr.smithi073.msdoog (mgr.14182) 668 : audit [DBG] from='client.15468 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:33.147 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:37:34.453 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:37:34.453 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:37:34.829 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:37:35.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:34 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:37:33.693325+0000 mgr.smithi073.msdoog (mgr.14182) 669 : cluster [DBG] pgmap v416: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:37:35.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:34 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:37:33.693325+0000 mgr.smithi073.msdoog (mgr.14182) 669 : cluster [DBG] pgmap v416: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:37:35.830 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:37:36.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:35 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:37:34.452982+0000 mgr.smithi073.msdoog (mgr.14182) 670 : audit [DBG] from='client.15472 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:36.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:35 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:37:34.452982+0000 mgr.smithi073.msdoog (mgr.14182) 670 : audit [DBG] from='client.15472 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:37.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:36 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:37:35.694129+0000 mgr.smithi073.msdoog (mgr.14182) 671 : cluster [DBG] pgmap v417: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:37:37.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:36 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:37:35.694129+0000 mgr.smithi073.msdoog (mgr.14182) 671 : cluster [DBG] pgmap v417: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:37:37.122 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:37:37.122 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:37:37.511 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:37:38.512 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:37:38.810 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:38 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:37:37.122747+0000 mgr.smithi073.msdoog (mgr.14182) 672 : audit [DBG] from='client.15476 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:38.810 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:38 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:37:37.695013+0000 mgr.smithi073.msdoog (mgr.14182) 673 : cluster [DBG] pgmap v418: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:37:39.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:38 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:37:37.122747+0000 mgr.smithi073.msdoog (mgr.14182) 672 : audit [DBG] from='client.15476 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:39.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:38 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:37:37.695013+0000 mgr.smithi073.msdoog (mgr.14182) 673 : cluster [DBG] pgmap v418: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:37:39.845 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:37:39.845 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:37:40.212 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:37:41.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:40 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:37:39.695572+0000 mgr.smithi073.msdoog (mgr.14182) 674 : cluster [DBG] pgmap v419: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:37:41.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:40 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:37:39.844295+0000 mgr.smithi073.msdoog (mgr.14182) 675 : audit [DBG] from='client.15480 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:41.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:40 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:37:39.695572+0000 mgr.smithi073.msdoog (mgr.14182) 674 : cluster [DBG] pgmap v419: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:37:41.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:40 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:37:39.844295+0000 mgr.smithi073.msdoog (mgr.14182) 675 : audit [DBG] from='client.15480 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:41.213 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:37:42.557 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:37:42.557 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:37:42.810 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:42 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:37:41.696386+0000 mgr.smithi073.msdoog (mgr.14182) 676 : cluster [DBG] pgmap v420: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:37:42.928 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:37:43.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:42 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:37:41.696386+0000 mgr.smithi073.msdoog (mgr.14182) 676 : cluster [DBG] pgmap v420: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:37:43.930 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:37:44.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:43 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:37:42.557589+0000 mgr.smithi073.msdoog (mgr.14182) 677 : audit [DBG] from='client.15484 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:44.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:43 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:37:42.557589+0000 mgr.smithi073.msdoog (mgr.14182) 677 : audit [DBG] from='client.15484 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:44.891 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:37:43.697427+0000 mgr.smithi073.msdoog (mgr.14182) 678 : cluster [DBG] pgmap v421: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:37:45.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:44 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:37:43.697427+0000 mgr.smithi073.msdoog (mgr.14182) 678 : cluster [DBG] pgmap v421: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:37:45.249 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:37:45.249 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:37:45.628 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:37:46.628 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:37:46.980 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:37:45.249224+0000 mgr.smithi073.msdoog (mgr.14182) 679 : audit [DBG] from='client.15488 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:46.980 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:37:45.698073+0000 mgr.smithi073.msdoog (mgr.14182) 680 : cluster [DBG] pgmap v422: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:37:47.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:37:45.249224+0000 mgr.smithi073.msdoog (mgr.14182) 679 : audit [DBG] from='client.15488 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:47.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:37:45.698073+0000 mgr.smithi073.msdoog (mgr.14182) 680 : cluster [DBG] pgmap v422: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:37:47.960 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:37:47.960 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:30:14.907943Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.zstaqw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-zstaqw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.zstaqw\nDeploy daemon haproxy.nfs.foo.smithi186.zstaqw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:28:21Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:28:59Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:29:37Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.957605Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.otqynp on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-otqynp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.otqynp\nDeploy daemon haproxy.nfs.foo.smithi073.otqynp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:30:51Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:31:29Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:32:07Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:32:44.962032Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.idlxtt on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:37:48.335 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:37:49.060 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:48 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:37:47.698805+0000 mgr.smithi073.msdoog (mgr.14182) 681 : cluster [DBG] pgmap v423: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:37:49.260 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:48 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:37:47.698805+0000 mgr.smithi073.msdoog (mgr.14182) 681 : cluster [DBG] pgmap v423: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:37:49.336 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:37:50.039 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:49 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:37:47.960189+0000 mgr.smithi073.msdoog (mgr.14182) 682 : audit [DBG] from='client.15492 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:50.039 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:49 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:37:49.609399+0000 mon.smithi073 (mon.0) 681 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi073.jqksqs"}]: dispatch 2024-01-27T23:37:50.039 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:49 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:37:49.616300+0000 mon.smithi073 (mon.0) 682 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:37:50.260 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:49 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:37:47.960189+0000 mgr.smithi073.msdoog (mgr.14182) 682 : audit [DBG] from='client.15492 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:50.260 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:49 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:37:49.609399+0000 mon.smithi073 (mon.0) 681 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi073.jqksqs"}]: dispatch 2024-01-27T23:37:50.260 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:49 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:37:49.616300+0000 mon.smithi073 (mon.0) 682 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:37:50.714 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:37:50.714 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:46.397050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:46.397185Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:46.397255Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:46.397320Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:46.397382Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:46.397622Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:37:51.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:37:49.608886+0000 mgr.smithi073.msdoog (mgr.14182) 683 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs 2024-01-27T23:37:51.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs 2024-01-27T23:37:51.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs 2024-01-27T23:37:51.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs 2024-01-27T23:37:51.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Deploy daemon haproxy.nfs.foo.smithi073.jqksqs ... 2024-01-27T23:37:51.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:37:51.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2024-01-27T23:37:51.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:35:56Z" level=warning msg="Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:37:51.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:36:34Z" level=warning msg="Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:37:51.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:37:12Z" level=warning msg="Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:37:51.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2024-01-27T23:37:51.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:37:51.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Traceback (most recent call last): 2024-01-27T23:37:51.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:37:51.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: yield (conn, connr) 2024-01-27T23:37:51.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:37:51.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: code, '\n'.join(err))) 2024-01-27T23:37:51.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs 2024-01-27T23:37:51.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs 2024-01-27T23:37:51.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs 2024-01-27T23:37:51.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs 2024-01-27T23:37:51.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Deploy daemon haproxy.nfs.foo.smithi073.jqksqs ... 2024-01-27T23:37:51.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:37:51.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2024-01-27T23:37:51.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:35:56Z" level=warning msg="Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:37:51.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:36:34Z" level=warning msg="Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:37:51.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:37:12Z" level=warning msg="Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:37:51.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2024-01-27T23:37:51.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:37:51.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:37:49.609043+0000 mgr.smithi073.msdoog (mgr.14182) 684 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi073.jqksqs 2024-01-27T23:37:51.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:37:49.609896+0000 mgr.smithi073.msdoog (mgr.14182) 685 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs 2024-01-27T23:37:51.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs 2024-01-27T23:37:51.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs 2024-01-27T23:37:51.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs 2024-01-27T23:37:51.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Deploy daemon haproxy.nfs.foo.smithi073.jqksqs ... 2024-01-27T23:37:51.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:37:51.064 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2024-01-27T23:37:51.064 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:35:56Z" level=warning msg="Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:37:51.064 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:36:34Z" level=warning msg="Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:37:51.064 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:37:12Z" level=warning msg="Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:37:51.064 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2024-01-27T23:37:51.064 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:37:51.064 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:37:49.611043+0000 mgr.smithi073.msdoog (mgr.14182) 686 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:37:51.064 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:37:49.612016+0000 mgr.smithi073.msdoog (mgr.14182) 687 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:37:51.064 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:37:49.612829+0000 mgr.smithi073.msdoog (mgr.14182) 688 : cluster [DBG] pgmap v424: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:37:51.064 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:37:49.870332+0000 mon.smithi073 (mon.0) 683 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:37:51.064 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:37:49.876558+0000 mon.smithi073 (mon.0) 684 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:37:51.064 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:37:50.284495+0000 mon.smithi073 (mon.0) 685 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:37:51.064 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:37:50.589387+0000 mon.smithi073 (mon.0) 686 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:37:51.170 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:37:51.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:37:49.608886+0000 mgr.smithi073.msdoog (mgr.14182) 683 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs 2024-01-27T23:37:51.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs 2024-01-27T23:37:51.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs 2024-01-27T23:37:51.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs 2024-01-27T23:37:51.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Deploy daemon haproxy.nfs.foo.smithi073.jqksqs ... 2024-01-27T23:37:51.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:37:51.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2024-01-27T23:37:51.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:35:56Z" level=warning msg="Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:37:51.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:36:34Z" level=warning msg="Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:37:51.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:37:12Z" level=warning msg="Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:37:51.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2024-01-27T23:37:51.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:37:51.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Traceback (most recent call last): 2024-01-27T23:37:51.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:37:51.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: yield (conn, connr) 2024-01-27T23:37:51.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:37:51.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: code, '\n'.join(err))) 2024-01-27T23:37:51.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs 2024-01-27T23:37:51.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs 2024-01-27T23:37:51.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs 2024-01-27T23:37:51.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs 2024-01-27T23:37:51.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Deploy daemon haproxy.nfs.foo.smithi073.jqksqs ... 2024-01-27T23:37:51.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:37:51.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2024-01-27T23:37:51.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:35:56Z" level=warning msg="Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:37:51.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:36:34Z" level=warning msg="Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:37:51.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:37:12Z" level=warning msg="Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:37:51.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2024-01-27T23:37:51.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:37:51.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:37:49.609043+0000 mgr.smithi073.msdoog (mgr.14182) 684 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi073.jqksqs 2024-01-27T23:37:51.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:37:49.609896+0000 mgr.smithi073.msdoog (mgr.14182) 685 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs 2024-01-27T23:37:51.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs 2024-01-27T23:37:51.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs 2024-01-27T23:37:51.264 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs 2024-01-27T23:37:51.264 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Deploy daemon haproxy.nfs.foo.smithi073.jqksqs ... 2024-01-27T23:37:51.264 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:37:51.264 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2024-01-27T23:37:51.264 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:35:56Z" level=warning msg="Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:37:51.264 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:36:34Z" level=warning msg="Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:37:51.264 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:37:12Z" level=warning msg="Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:37:51.264 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2024-01-27T23:37:51.264 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:37:51.264 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:37:49.611043+0000 mgr.smithi073.msdoog (mgr.14182) 686 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:37:51.264 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:37:49.612016+0000 mgr.smithi073.msdoog (mgr.14182) 687 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:37:51.264 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:37:49.612829+0000 mgr.smithi073.msdoog (mgr.14182) 688 : cluster [DBG] pgmap v424: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:37:51.264 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:37:49.870332+0000 mon.smithi073 (mon.0) 683 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:37:51.265 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:37:49.876558+0000 mon.smithi073 (mon.0) 684 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:37:51.265 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:37:50.284495+0000 mon.smithi073 (mon.0) 685 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:37:51.265 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:37:50.589387+0000 mon.smithi073 (mon.0) 686 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:37:52.171 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:37:52.199 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:51 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:37:50.714234+0000 mgr.smithi073.msdoog (mgr.14182) 689 : audit [DBG] from='client.15496 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:52.199 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:51 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:37:51.252385+0000 mon.smithi073 (mon.0) 687 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:37:52.199 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:51 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:37:51.524261+0000 mon.smithi073 (mon.0) 688 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:37:52.199 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:51 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:37:51.524950+0000 mon.smithi073 (mon.0) 689 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:37:52.199 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:51 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:37:51.525779+0000 mon.smithi073 (mon.0) 690 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:37:52.199 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:51 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:37:51.526319+0000 mon.smithi073 (mon.0) 691 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:37:52.200 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:51 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:37:51.531171+0000 mon.smithi073 (mon.0) 692 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:37:52.260 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:51 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:37:50.714234+0000 mgr.smithi073.msdoog (mgr.14182) 689 : audit [DBG] from='client.15496 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:52.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:51 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:37:51.252385+0000 mon.smithi073 (mon.0) 687 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:37:52.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:51 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:37:51.524261+0000 mon.smithi073 (mon.0) 688 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:37:52.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:51 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:37:51.524950+0000 mon.smithi073 (mon.0) 689 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:37:52.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:51 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:37:51.525779+0000 mon.smithi073 (mon.0) 690 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:37:52.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:51 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:37:51.526319+0000 mon.smithi073 (mon.0) 691 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:37:52.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:51 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:37:51.531171+0000 mon.smithi073 (mon.0) 692 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:37:53.260 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:52 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:37:51.526751+0000 mgr.smithi073.msdoog (mgr.14182) 690 : cephadm [INF] Adjusting osd_memory_target on smithi186 to 3734M 2024-01-27T23:37:53.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:52 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:37:51.613713+0000 mgr.smithi073.msdoog (mgr.14182) 691 : cluster [DBG] pgmap v425: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 11 KiB/s rd, 0 B/s wr, 17 op/s 2024-01-27T23:37:53.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:52 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:37:52.133189+0000 mon.smithi073 (mon.0) 693 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:37:53.310 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:52 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:37:51.526751+0000 mgr.smithi073.msdoog (mgr.14182) 690 : cephadm [INF] Adjusting osd_memory_target on smithi186 to 3734M 2024-01-27T23:37:53.310 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:52 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:37:51.613713+0000 mgr.smithi073.msdoog (mgr.14182) 691 : cluster [DBG] pgmap v425: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 11 KiB/s rd, 0 B/s wr, 17 op/s 2024-01-27T23:37:53.310 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:52 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:37:52.133189+0000 mon.smithi073 (mon.0) 693 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:37:53.772 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:37:53.772 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:32:48.945313Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:32:48.945376Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:32:48.945436Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:32:48.945245Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:32:48.945105Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:32:48.945931Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:32:48.945495Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:32:48.945610Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:32:48.945553Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:32:48.945871Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:37:54.219 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:37:55.219 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:37:55.247 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:54 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:37:53.614771+0000 mgr.smithi073.msdoog (mgr.14182) 692 : cluster [DBG] pgmap v426: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 27 KiB/s rd, 0 B/s wr, 44 op/s 2024-01-27T23:37:55.248 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:54 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:37:53.772425+0000 mgr.smithi073.msdoog (mgr.14182) 693 : audit [DBG] from='client.15500 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:55.248 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:54 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:37:54.389499+0000 mon.smithi073 (mon.0) 694 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:37:55.248 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:54 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:37:54.681415+0000 mon.smithi073 (mon.0) 695 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:37:55.248 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:54 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:37:54.682056+0000 mon.smithi073 (mon.0) 696 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:37:55.248 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:54 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:37:54.682517+0000 mon.smithi073 (mon.0) 697 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:37:55.248 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:54 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:37:54.682973+0000 mon.smithi073 (mon.0) 698 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:37:55.248 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:54 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:37:54.687397+0000 mon.smithi073 (mon.0) 699 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:37:55.248 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:54 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:37:54.688184+0000 mon.smithi073 (mon.0) 700 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:37:55.248 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:54 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:37:54.688716+0000 mon.smithi073 (mon.0) 701 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:37:55.248 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:54 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:37:54.848443+0000 mon.smithi073 (mon.0) 702 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:37:55.248 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:54 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:37:54.852812+0000 mon.smithi073 (mon.0) 703 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:37:55.248 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:54 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:37:54.859871+0000 mon.smithi073 (mon.0) 704 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:37:55.260 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:54 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:37:53.614771+0000 mgr.smithi073.msdoog (mgr.14182) 692 : cluster [DBG] pgmap v426: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 27 KiB/s rd, 0 B/s wr, 44 op/s 2024-01-27T23:37:55.260 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:54 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:37:53.772425+0000 mgr.smithi073.msdoog (mgr.14182) 693 : audit [DBG] from='client.15500 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:55.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:54 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:37:54.389499+0000 mon.smithi073 (mon.0) 694 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:37:55.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:54 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:37:54.681415+0000 mon.smithi073 (mon.0) 695 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:37:55.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:54 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:37:54.682056+0000 mon.smithi073 (mon.0) 696 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:37:55.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:54 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:37:54.682517+0000 mon.smithi073 (mon.0) 697 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:37:55.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:54 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:37:54.682973+0000 mon.smithi073 (mon.0) 698 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2024-01-27T23:37:55.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:54 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:37:54.687397+0000 mon.smithi073 (mon.0) 699 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:37:55.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:54 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:37:54.688184+0000 mon.smithi073 (mon.0) 700 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:37:55.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:54 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:37:54.688716+0000 mon.smithi073 (mon.0) 701 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:37:55.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:54 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:37:54.848443+0000 mon.smithi073 (mon.0) 702 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:37:55.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:54 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:37:54.852812+0000 mon.smithi073 (mon.0) 703 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:37:55.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:54 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:37:54.859871+0000 mon.smithi073 (mon.0) 704 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:37:56.181 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:37:54.683332+0000 mgr.smithi073.msdoog (mgr.14182) 694 : cephadm [INF] Adjusting osd_memory_target on smithi073 to 2710M 2024-01-27T23:37:56.181 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:37:54.691733+0000 mgr.smithi073.msdoog (mgr.14182) 695 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-01-27T23:37:56.181 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:37:54.849290+0000 mgr.smithi073.msdoog (mgr.14182) 696 : cluster [DBG] pgmap v427: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 47 KiB/s rd, 0 B/s wr, 78 op/s 2024-01-27T23:37:56.181 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:37:54.862227+0000 mgr.smithi073.msdoog (mgr.14182) 697 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi186.dyryxh on smithi186 2024-01-27T23:37:56.181 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:37:55.846849+0000 mon.smithi073 (mon.0) 705 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:37:56.181 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:37:55.846881+0000 mon.smithi073 (mon.0) 706 : cluster [INF] Cluster is now healthy 2024-01-27T23:37:56.260 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:37:54.683332+0000 mgr.smithi073.msdoog (mgr.14182) 694 : cephadm [INF] Adjusting osd_memory_target on smithi073 to 2710M 2024-01-27T23:37:56.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:37:54.691733+0000 mgr.smithi073.msdoog (mgr.14182) 695 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-01-27T23:37:56.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:37:54.849290+0000 mgr.smithi073.msdoog (mgr.14182) 696 : cluster [DBG] pgmap v427: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 47 KiB/s rd, 0 B/s wr, 78 op/s 2024-01-27T23:37:56.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:37:54.862227+0000 mgr.smithi073.msdoog (mgr.14182) 697 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi186.dyryxh on smithi186 2024-01-27T23:37:56.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:37:55.846849+0000 mon.smithi073 (mon.0) 705 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:37:56.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:37:55.846881+0000 mon.smithi073 (mon.0) 706 : cluster [INF] Cluster is now healthy 2024-01-27T23:37:56.534 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:37:56.534 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:37:56.910 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:37:57.910 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:37:58.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:57 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:37:56.534114+0000 mgr.smithi073.msdoog (mgr.14182) 698 : audit [DBG] from='client.15524 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:58.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:57 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:37:56.849920+0000 mgr.smithi073.msdoog (mgr.14182) 699 : cluster [DBG] pgmap v428: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 48 KiB/s rd, 0 B/s wr, 79 op/s 2024-01-27T23:37:58.261 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:57 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:37:56.534114+0000 mgr.smithi073.msdoog (mgr.14182) 698 : audit [DBG] from='client.15524 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:37:58.261 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:57 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:37:56.849920+0000 mgr.smithi073.msdoog (mgr.14182) 699 : cluster [DBG] pgmap v428: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 48 KiB/s rd, 0 B/s wr, 79 op/s 2024-01-27T23:37:59.260 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:37:58 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:37:58.850655+0000 mgr.smithi073.msdoog (mgr.14182) 700 : cluster [DBG] pgmap v429: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 49 KiB/s rd, 0 B/s wr, 80 op/s 2024-01-27T23:37:59.293 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:37:59.293 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:37:59.310 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:37:58 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:37:58.850655+0000 mgr.smithi073.msdoog (mgr.14182) 700 : cluster [DBG] pgmap v429: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 49 KiB/s rd, 0 B/s wr, 80 op/s 2024-01-27T23:37:59.668 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:38:00.668 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:38:01.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:00 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:37:59.293469+0000 mgr.smithi073.msdoog (mgr.14182) 701 : audit [DBG] from='client.15528 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:01.019 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:00 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:37:59.293469+0000 mgr.smithi073.msdoog (mgr.14182) 701 : audit [DBG] from='client.15528 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:01.630 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:01 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:38:00.851255+0000 mgr.smithi073.msdoog (mgr.14182) 702 : cluster [DBG] pgmap v430: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 49 KiB/s rd, 0 B/s wr, 79 op/s 2024-01-27T23:38:01.977 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:01 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:38:00.851255+0000 mgr.smithi073.msdoog (mgr.14182) 702 : cluster [DBG] pgmap v430: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 49 KiB/s rd, 0 B/s wr, 79 op/s 2024-01-27T23:38:01.982 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:38:01.983 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:38:02.368 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:38:03.260 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:02 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:38:01.983148+0000 mgr.smithi073.msdoog (mgr.14182) 703 : audit [DBG] from='client.15532 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:03.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:02 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:38:02.852065+0000 mgr.smithi073.msdoog (mgr.14182) 704 : cluster [DBG] pgmap v431: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 39 KiB/s rd, 0 B/s wr, 64 op/s 2024-01-27T23:38:03.311 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:02 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:38:01.983148+0000 mgr.smithi073.msdoog (mgr.14182) 703 : audit [DBG] from='client.15532 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:03.311 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:02 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:38:02.852065+0000 mgr.smithi073.msdoog (mgr.14182) 704 : cluster [DBG] pgmap v431: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 39 KiB/s rd, 0 B/s wr, 64 op/s 2024-01-27T23:38:03.368 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:38:04.681 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:38:04.681 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:38:05.058 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:38:05.810 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:05 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:38:04.680955+0000 mgr.smithi073.msdoog (mgr.14182) 705 : audit [DBG] from='client.15536 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:05.811 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:05 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:38:04.852668+0000 mgr.smithi073.msdoog (mgr.14182) 706 : cluster [DBG] pgmap v432: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 24 KiB/s rd, 0 B/s wr, 38 op/s 2024-01-27T23:38:06.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:05 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:38:04.680955+0000 mgr.smithi073.msdoog (mgr.14182) 705 : audit [DBG] from='client.15536 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:06.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:05 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:38:04.852668+0000 mgr.smithi073.msdoog (mgr.14182) 706 : cluster [DBG] pgmap v432: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 24 KiB/s rd, 0 B/s wr, 38 op/s 2024-01-27T23:38:06.059 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:38:07.012 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:06 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:38:06.853218+0000 mgr.smithi073.msdoog (mgr.14182) 707 : cluster [DBG] pgmap v433: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 5.5 KiB/s rd, 0 B/s wr, 8 op/s 2024-01-27T23:38:07.260 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:06 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:38:06.853218+0000 mgr.smithi073.msdoog (mgr.14182) 707 : cluster [DBG] pgmap v433: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 5.5 KiB/s rd, 0 B/s wr, 8 op/s 2024-01-27T23:38:07.372 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:38:07.373 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:38:07.734 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:38:08.511 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:08 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:38:07.133843+0000 mon.smithi073 (mon.0) 707 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:38:08.511 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:08 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:38:07.372923+0000 mgr.smithi073.msdoog (mgr.14182) 708 : audit [DBG] from='client.15540 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:08.560 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:08 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:38:07.133843+0000 mon.smithi073 (mon.0) 707 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:38:08.561 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:08 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:38:07.372923+0000 mgr.smithi073.msdoog (mgr.14182) 708 : audit [DBG] from='client.15540 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:08.735 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:38:09.378 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:09 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:38:08.853897+0000 mgr.smithi073.msdoog (mgr.14182) 709 : cluster [DBG] pgmap v434: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.9 KiB/s rd, 0 B/s wr, 7 op/s 2024-01-27T23:38:09.511 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:09 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:38:08.853897+0000 mgr.smithi073.msdoog (mgr.14182) 709 : cluster [DBG] pgmap v434: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.9 KiB/s rd, 0 B/s wr, 7 op/s 2024-01-27T23:38:10.047 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:38:10.048 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:38:10.425 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:38:11.260 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:10 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:38:10.047293+0000 mgr.smithi073.msdoog (mgr.14182) 710 : audit [DBG] from='client.15544 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:11.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:10 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:38:10.854515+0000 mgr.smithi073.msdoog (mgr.14182) 711 : cluster [DBG] pgmap v435: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.2 KiB/s rd, 0 B/s wr, 6 op/s 2024-01-27T23:38:11.310 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:10 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:38:10.047293+0000 mgr.smithi073.msdoog (mgr.14182) 710 : audit [DBG] from='client.15544 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:11.311 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:10 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:38:10.854515+0000 mgr.smithi073.msdoog (mgr.14182) 711 : cluster [DBG] pgmap v435: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.2 KiB/s rd, 0 B/s wr, 6 op/s 2024-01-27T23:38:11.425 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:38:12.817 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:38:12.817 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:38:13.180 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:12 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:38:12.817318+0000 mgr.smithi073.msdoog (mgr.14182) 712 : audit [DBG] from='client.15548 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:13.180 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:12 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:38:12.855280+0000 mgr.smithi073.msdoog (mgr.14182) 713 : cluster [DBG] pgmap v436: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.2 KiB/s rd, 0 B/s wr, 6 op/s 2024-01-27T23:38:13.231 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:38:13.260 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:12 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:38:12.817318+0000 mgr.smithi073.msdoog (mgr.14182) 712 : audit [DBG] from='client.15548 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:13.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:12 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:38:12.855280+0000 mgr.smithi073.msdoog (mgr.14182) 713 : cluster [DBG] pgmap v436: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.2 KiB/s rd, 0 B/s wr, 6 op/s 2024-01-27T23:38:14.232 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:38:15.591 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:38:15.591 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:38:15.913 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:15 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:38:14.855840+0000 mgr.smithi073.msdoog (mgr.14182) 714 : cluster [DBG] pgmap v437: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.6 KiB/s rd, 0 B/s wr, 4 op/s 2024-01-27T23:38:15.981 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:38:16.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:15 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:38:14.855840+0000 mgr.smithi073.msdoog (mgr.14182) 714 : cluster [DBG] pgmap v437: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.6 KiB/s rd, 0 B/s wr, 4 op/s 2024-01-27T23:38:16.982 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:38:17.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:38:15.591111+0000 mgr.smithi073.msdoog (mgr.14182) 715 : audit [DBG] from='client.15552 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:17.016 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:38:15.591111+0000 mgr.smithi073.msdoog (mgr.14182) 715 : audit [DBG] from='client.15552 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:17.909 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:17 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:38:16.856484+0000 mgr.smithi073.msdoog (mgr.14182) 716 : cluster [DBG] pgmap v438: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 853 B/s rd, 0 B/s wr, 1 op/s 2024-01-27T23:38:18.010 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:17 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:38:16.856484+0000 mgr.smithi073.msdoog (mgr.14182) 716 : cluster [DBG] pgmap v438: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 853 B/s rd, 0 B/s wr, 1 op/s 2024-01-27T23:38:18.275 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:38:18.275 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:38:18.682 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:38:19.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:18 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:38:18.274563+0000 mgr.smithi073.msdoog (mgr.14182) 717 : audit [DBG] from='client.15556 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:19.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:18 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:38:18.857208+0000 mgr.smithi073.msdoog (mgr.14182) 718 : cluster [DBG] pgmap v439: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:19.310 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:18 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:38:18.274563+0000 mgr.smithi073.msdoog (mgr.14182) 717 : audit [DBG] from='client.15556 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:19.311 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:18 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:38:18.857208+0000 mgr.smithi073.msdoog (mgr.14182) 718 : cluster [DBG] pgmap v439: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:19.683 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:38:21.004 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:38:21.004 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:38:21.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:38:20.857887+0000 mgr.smithi073.msdoog (mgr.14182) 719 : cluster [DBG] pgmap v440: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:21.310 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:38:20.857887+0000 mgr.smithi073.msdoog (mgr.14182) 719 : cluster [DBG] pgmap v440: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:21.340 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:38:22.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:21 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:38:21.003553+0000 mgr.smithi073.msdoog (mgr.14182) 720 : audit [DBG] from='client.15560 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:22.310 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:21 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:38:21.003553+0000 mgr.smithi073.msdoog (mgr.14182) 720 : audit [DBG] from='client.15560 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:22.341 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:38:23.260 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:22 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:38:22.858670+0000 mgr.smithi073.msdoog (mgr.14182) 721 : cluster [DBG] pgmap v441: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:38:23.310 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:22 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:38:22.858670+0000 mgr.smithi073.msdoog (mgr.14182) 721 : cluster [DBG] pgmap v441: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:38:23.689 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:38:23.689 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:38:24.013 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:23 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:38:23.689504+0000 mgr.smithi073.msdoog (mgr.14182) 722 : audit [DBG] from='client.15564 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:24.081 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:38:24.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:23 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:38:23.689504+0000 mgr.smithi073.msdoog (mgr.14182) 722 : audit [DBG] from='client.15564 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:25.082 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:38:25.742 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:25 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:38:24.859410+0000 mgr.smithi073.msdoog (mgr.14182) 723 : cluster [DBG] pgmap v442: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:26.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:25 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:38:24.859410+0000 mgr.smithi073.msdoog (mgr.14182) 723 : cluster [DBG] pgmap v442: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:26.397 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:38:26.397 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:38:26.788 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:38:27.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:26 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:38:26.396470+0000 mgr.smithi073.msdoog (mgr.14182) 724 : audit [DBG] from='client.15568 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:27.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:26 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:38:26.860178+0000 mgr.smithi073.msdoog (mgr.14182) 725 : cluster [DBG] pgmap v443: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:27.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:26 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:38:26.396470+0000 mgr.smithi073.msdoog (mgr.14182) 724 : audit [DBG] from='client.15568 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:27.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:26 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:38:26.860178+0000 mgr.smithi073.msdoog (mgr.14182) 725 : cluster [DBG] pgmap v443: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:27.789 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:38:29.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:38:28.860805+0000 mgr.smithi073.msdoog (mgr.14182) 726 : cluster [DBG] pgmap v444: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:29.116 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:38:29.116 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:38:29.260 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:38:28.860805+0000 mgr.smithi073.msdoog (mgr.14182) 726 : cluster [DBG] pgmap v444: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:29.489 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:38:30.490 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:38:30.811 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:30 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:38:29.116659+0000 mgr.smithi073.msdoog (mgr.14182) 727 : audit [DBG] from='client.15572 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:31.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:30 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:38:29.116659+0000 mgr.smithi073.msdoog (mgr.14182) 727 : audit [DBG] from='client.15572 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:31.807 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:38:31.807 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:38:31.810 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:31 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:38:30.861302+0000 mgr.smithi073.msdoog (mgr.14182) 728 : cluster [DBG] pgmap v445: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:31.978 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:31 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:38:30.861302+0000 mgr.smithi073.msdoog (mgr.14182) 728 : cluster [DBG] pgmap v445: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:32.179 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:38:33.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:32 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:38:31.806938+0000 mgr.smithi073.msdoog (mgr.14182) 729 : audit [DBG] from='client.15576 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:33.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:32 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:38:31.806938+0000 mgr.smithi073.msdoog (mgr.14182) 729 : audit [DBG] from='client.15576 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:33.180 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:38:33.811 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:33 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:38:32.862295+0000 mgr.smithi073.msdoog (mgr.14182) 730 : cluster [DBG] pgmap v446: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:38:34.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:33 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:38:32.862295+0000 mgr.smithi073.msdoog (mgr.14182) 730 : cluster [DBG] pgmap v446: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:38:34.418 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:38:34.419 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:38:34.795 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:38:35.797 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:38:35.810 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:35 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:38:34.418327+0000 mgr.smithi073.msdoog (mgr.14182) 731 : audit [DBG] from='client.15580 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:35.810 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:35 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:38:34.862923+0000 mgr.smithi073.msdoog (mgr.14182) 732 : cluster [DBG] pgmap v447: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:36.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:35 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:38:34.418327+0000 mgr.smithi073.msdoog (mgr.14182) 731 : audit [DBG] from='client.15580 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:36.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:35 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:38:34.862923+0000 mgr.smithi073.msdoog (mgr.14182) 732 : cluster [DBG] pgmap v447: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:37.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:36 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:38:36.863432+0000 mgr.smithi073.msdoog (mgr.14182) 733 : cluster [DBG] pgmap v448: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:37.126 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:38:37.126 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:38:37.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:36 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:38:36.863432+0000 mgr.smithi073.msdoog (mgr.14182) 733 : cluster [DBG] pgmap v448: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:37.504 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:38:38.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:37 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:38:37.126100+0000 mgr.smithi073.msdoog (mgr.14182) 734 : audit [DBG] from='client.15584 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:38.311 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:37 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:38:37.126100+0000 mgr.smithi073.msdoog (mgr.14182) 734 : audit [DBG] from='client.15584 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:38.505 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:38:39.140 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:38 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:38:38.864036+0000 mgr.smithi073.msdoog (mgr.14182) 735 : cluster [DBG] pgmap v449: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:39.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:38 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:38:38.864036+0000 mgr.smithi073.msdoog (mgr.14182) 735 : cluster [DBG] pgmap v449: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:39.872 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:38:39.872 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:38:40.245 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:38:41.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:40 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:38:39.870850+0000 mgr.smithi073.msdoog (mgr.14182) 736 : audit [DBG] from='client.15588 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:41.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:40 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:38:39.870850+0000 mgr.smithi073.msdoog (mgr.14182) 736 : audit [DBG] from='client.15588 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:41.246 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:38:41.881 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:41 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:38:40.864870+0000 mgr.smithi073.msdoog (mgr.14182) 737 : cluster [DBG] pgmap v450: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:41.978 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:41 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:38:40.864870+0000 mgr.smithi073.msdoog (mgr.14182) 737 : cluster [DBG] pgmap v450: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:42.568 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:38:42.568 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:38:42.937 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:38:43.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:42 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:38:42.567802+0000 mgr.smithi073.msdoog (mgr.14182) 738 : audit [DBG] from='client.15592 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:43.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:42 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:38:42.865582+0000 mgr.smithi073.msdoog (mgr.14182) 739 : cluster [DBG] pgmap v451: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:38:43.311 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:42 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:38:42.567802+0000 mgr.smithi073.msdoog (mgr.14182) 738 : audit [DBG] from='client.15592 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:43.311 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:42 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:38:42.865582+0000 mgr.smithi073.msdoog (mgr.14182) 739 : cluster [DBG] pgmap v451: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:38:43.938 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:38:45.267 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:38:45.267 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:38:45.636 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:38:46.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:45 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:38:44.866133+0000 mgr.smithi073.msdoog (mgr.14182) 740 : cluster [DBG] pgmap v452: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:46.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:45 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:38:44.866133+0000 mgr.smithi073.msdoog (mgr.14182) 740 : cluster [DBG] pgmap v452: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:46.637 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:38:47.001 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:38:45.266909+0000 mgr.smithi073.msdoog (mgr.14182) 741 : audit [DBG] from='client.15596 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:47.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:38:45.266909+0000 mgr.smithi073.msdoog (mgr.14182) 741 : audit [DBG] from='client.15596 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:47.931 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:38:47.931 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:38:47.953 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:47 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:38:46.866703+0000 mgr.smithi073.msdoog (mgr.14182) 742 : cluster [DBG] pgmap v453: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:48.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:47 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:38:46.866703+0000 mgr.smithi073.msdoog (mgr.14182) 742 : cluster [DBG] pgmap v453: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:48.301 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:38:49.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:48 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:38:47.931054+0000 mgr.smithi073.msdoog (mgr.14182) 743 : audit [DBG] from='client.15600 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:49.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:48 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:38:48.867302+0000 mgr.smithi073.msdoog (mgr.14182) 744 : cluster [DBG] pgmap v454: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:49.303 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:38:49.311 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:48 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:38:47.931054+0000 mgr.smithi073.msdoog (mgr.14182) 743 : audit [DBG] from='client.15600 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:49.311 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:48 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:38:48.867302+0000 mgr.smithi073.msdoog (mgr.14182) 744 : cluster [DBG] pgmap v454: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:50.610 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:38:50.610 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:38:50.994 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:38:51.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:38:50.609743+0000 mgr.smithi073.msdoog (mgr.14182) 745 : audit [DBG] from='client.15604 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:51.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:38:50.868051+0000 mgr.smithi073.msdoog (mgr.14182) 746 : cluster [DBG] pgmap v455: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:51.310 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:38:50.609743+0000 mgr.smithi073.msdoog (mgr.14182) 745 : audit [DBG] from='client.15604 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:51.311 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:38:50.868051+0000 mgr.smithi073.msdoog (mgr.14182) 746 : cluster [DBG] pgmap v455: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:51.995 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:38:53.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:52 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:38:52.868768+0000 mgr.smithi073.msdoog (mgr.14182) 747 : cluster [DBG] pgmap v456: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:38:53.311 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:52 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:38:52.868768+0000 mgr.smithi073.msdoog (mgr.14182) 747 : cluster [DBG] pgmap v456: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:38:53.351 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:38:53.351 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:38:53.734 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:38:54.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:53 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:38:53.351272+0000 mgr.smithi073.msdoog (mgr.14182) 748 : audit [DBG] from='client.15608 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:54.311 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:53 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:38:53.351272+0000 mgr.smithi073.msdoog (mgr.14182) 748 : audit [DBG] from='client.15608 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:54.734 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:38:55.747 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:38:54.869327+0000 mgr.smithi073.msdoog (mgr.14182) 749 : cluster [DBG] pgmap v457: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:56.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:38:54.869327+0000 mgr.smithi073.msdoog (mgr.14182) 749 : cluster [DBG] pgmap v457: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:56.099 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:38:56.100 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:38:56.459 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:38:57.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:56 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:38:56.099018+0000 mgr.smithi073.msdoog (mgr.14182) 750 : audit [DBG] from='client.15612 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:57.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:56 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:38:56.869881+0000 mgr.smithi073.msdoog (mgr.14182) 751 : cluster [DBG] pgmap v458: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:57.311 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:56 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:38:56.099018+0000 mgr.smithi073.msdoog (mgr.14182) 750 : audit [DBG] from='client.15612 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:57.311 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:56 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:38:56.869881+0000 mgr.smithi073.msdoog (mgr.14182) 751 : cluster [DBG] pgmap v458: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:57.460 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:38:58.783 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:38:58.784 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:38:59.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:58 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:38:58.783233+0000 mgr.smithi073.msdoog (mgr.14182) 752 : audit [DBG] from='client.15616 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:59.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:38:58 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:38:58.870717+0000 mgr.smithi073.msdoog (mgr.14182) 753 : cluster [DBG] pgmap v459: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:38:59.158 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:38:59.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:58 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:38:58.783233+0000 mgr.smithi073.msdoog (mgr.14182) 752 : audit [DBG] from='client.15616 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:38:59.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:38:58 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:38:58.870717+0000 mgr.smithi073.msdoog (mgr.14182) 753 : cluster [DBG] pgmap v459: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:00.159 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:39:01.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:00 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:39:00.871427+0000 mgr.smithi073.msdoog (mgr.14182) 754 : cluster [DBG] pgmap v460: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:01.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:00 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:39:00.871427+0000 mgr.smithi073.msdoog (mgr.14182) 754 : cluster [DBG] pgmap v460: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:01.434 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:39:01.434 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:39:01.826 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:39:02.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:01 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:39:01.434241+0000 mgr.smithi073.msdoog (mgr.14182) 755 : audit [DBG] from='client.15620 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:02.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:01 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:39:01.434241+0000 mgr.smithi073.msdoog (mgr.14182) 755 : audit [DBG] from='client.15620 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:02.827 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:39:03.198 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:02 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:39:02.872170+0000 mgr.smithi073.msdoog (mgr.14182) 756 : cluster [DBG] pgmap v461: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:39:03.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:02 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:39:02.872170+0000 mgr.smithi073.msdoog (mgr.14182) 756 : cluster [DBG] pgmap v461: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:39:04.257 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:39:04.258 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:39:04.584 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:39:05.585 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:39:05.812 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:05 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:39:04.256465+0000 mgr.smithi073.msdoog (mgr.14182) 757 : audit [DBG] from='client.15624 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:05.812 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:05 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:39:04.872735+0000 mgr.smithi073.msdoog (mgr.14182) 758 : cluster [DBG] pgmap v462: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:06.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:05 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:39:04.256465+0000 mgr.smithi073.msdoog (mgr.14182) 757 : audit [DBG] from='client.15624 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:06.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:05 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:39:04.872735+0000 mgr.smithi073.msdoog (mgr.14182) 758 : cluster [DBG] pgmap v462: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:06.933 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:39:06.933 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:39:07.248 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:06 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:39:06.873243+0000 mgr.smithi073.msdoog (mgr.14182) 759 : cluster [DBG] pgmap v463: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:07.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:06 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:39:06.873243+0000 mgr.smithi073.msdoog (mgr.14182) 759 : cluster [DBG] pgmap v463: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:07.316 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:39:08.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:07 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:39:06.932838+0000 mgr.smithi073.msdoog (mgr.14182) 760 : audit [DBG] from='client.15628 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:08.311 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:07 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:39:06.932838+0000 mgr.smithi073.msdoog (mgr.14182) 760 : audit [DBG] from='client.15628 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:08.317 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:39:09.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:08 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:39:08.873836+0000 mgr.smithi073.msdoog (mgr.14182) 761 : cluster [DBG] pgmap v464: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:09.287 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:08 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:39:08.873836+0000 mgr.smithi073.msdoog (mgr.14182) 761 : cluster [DBG] pgmap v464: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:09.733 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:39:09.733 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:39:10.125 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:39:11.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:10 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:39:09.728369+0000 mgr.smithi073.msdoog (mgr.14182) 762 : audit [DBG] from='client.15632 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:11.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:10 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:39:09.728369+0000 mgr.smithi073.msdoog (mgr.14182) 762 : audit [DBG] from='client.15632 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:11.127 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:39:11.761 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:11 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:39:10.874549+0000 mgr.smithi073.msdoog (mgr.14182) 763 : cluster [DBG] pgmap v465: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:11.979 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:11 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:39:10.874549+0000 mgr.smithi073.msdoog (mgr.14182) 763 : cluster [DBG] pgmap v465: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:12.467 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:39:12.467 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:39:12.840 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:39:13.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:12 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:39:12.466234+0000 mgr.smithi073.msdoog (mgr.14182) 764 : audit [DBG] from='client.15636 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:13.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:12 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:39:12.875270+0000 mgr.smithi073.msdoog (mgr.14182) 765 : cluster [DBG] pgmap v466: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:39:13.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:12 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:39:12.466234+0000 mgr.smithi073.msdoog (mgr.14182) 764 : audit [DBG] from='client.15636 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:13.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:12 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:39:12.875270+0000 mgr.smithi073.msdoog (mgr.14182) 765 : cluster [DBG] pgmap v466: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:39:13.840 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:39:15.249 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:39:15.250 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:39:15.618 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:39:16.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:15 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:39:14.875808+0000 mgr.smithi073.msdoog (mgr.14182) 766 : cluster [DBG] pgmap v467: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:16.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:15 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:39:14.875808+0000 mgr.smithi073.msdoog (mgr.14182) 766 : cluster [DBG] pgmap v467: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:16.620 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:39:16.951 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:39:15.248278+0000 mgr.smithi073.msdoog (mgr.14182) 767 : audit [DBG] from='client.15640 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:17.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:39:15.248278+0000 mgr.smithi073.msdoog (mgr.14182) 767 : audit [DBG] from='client.15640 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:17.987 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:39:17.987 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:39:18.010 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:17 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:39:16.876316+0000 mgr.smithi073.msdoog (mgr.14182) 768 : cluster [DBG] pgmap v468: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:18.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:17 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:39:16.876316+0000 mgr.smithi073.msdoog (mgr.14182) 768 : cluster [DBG] pgmap v468: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:18.372 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:39:19.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:18 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:39:17.985948+0000 mgr.smithi073.msdoog (mgr.14182) 769 : audit [DBG] from='client.15644 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:19.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:18 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:39:18.876928+0000 mgr.smithi073.msdoog (mgr.14182) 770 : cluster [DBG] pgmap v469: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:19.311 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:18 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:39:17.985948+0000 mgr.smithi073.msdoog (mgr.14182) 769 : audit [DBG] from='client.15644 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:19.311 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:18 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:39:18.876928+0000 mgr.smithi073.msdoog (mgr.14182) 770 : cluster [DBG] pgmap v469: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:19.374 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:39:20.767 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:39:20.768 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:39:21.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:39:20.766924+0000 mgr.smithi073.msdoog (mgr.14182) 771 : audit [DBG] from='client.15648 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:21.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:39:20.877492+0000 mgr.smithi073.msdoog (mgr.14182) 772 : cluster [DBG] pgmap v470: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:21.131 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:39:21.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:39:20.766924+0000 mgr.smithi073.msdoog (mgr.14182) 771 : audit [DBG] from='client.15648 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:21.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:39:20.877492+0000 mgr.smithi073.msdoog (mgr.14182) 772 : cluster [DBG] pgmap v470: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:22.132 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:39:23.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:22 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:39:22.878232+0000 mgr.smithi073.msdoog (mgr.14182) 773 : cluster [DBG] pgmap v471: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:39:23.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:22 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:39:22.878232+0000 mgr.smithi073.msdoog (mgr.14182) 773 : cluster [DBG] pgmap v471: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:39:23.479 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:39:23.480 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:39:23.848 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:39:24.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:23 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:39:23.475274+0000 mgr.smithi073.msdoog (mgr.14182) 774 : audit [DBG] from='client.15652 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:24.311 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:23 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:39:23.475274+0000 mgr.smithi073.msdoog (mgr.14182) 774 : audit [DBG] from='client.15652 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:24.849 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:39:25.801 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:25 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:39:24.878948+0000 mgr.smithi073.msdoog (mgr.14182) 775 : cluster [DBG] pgmap v472: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:26.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:25 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:39:24.878948+0000 mgr.smithi073.msdoog (mgr.14182) 775 : cluster [DBG] pgmap v472: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:26.147 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:39:26.147 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:39:26.534 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:39:27.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:26 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:39:26.146035+0000 mgr.smithi073.msdoog (mgr.14182) 776 : audit [DBG] from='client.15656 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:27.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:26 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:39:26.879470+0000 mgr.smithi073.msdoog (mgr.14182) 777 : cluster [DBG] pgmap v473: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:27.311 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:26 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:39:26.146035+0000 mgr.smithi073.msdoog (mgr.14182) 776 : audit [DBG] from='client.15656 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:27.311 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:26 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:39:26.879470+0000 mgr.smithi073.msdoog (mgr.14182) 777 : cluster [DBG] pgmap v473: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:27.535 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:39:28.862 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:39:28.862 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:39:29.188 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:39:28.861731+0000 mgr.smithi073.msdoog (mgr.14182) 778 : audit [DBG] from='client.15660 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:29.188 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:39:28.880181+0000 mgr.smithi073.msdoog (mgr.14182) 779 : cluster [DBG] pgmap v474: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:29.247 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:39:29.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:39:28.861731+0000 mgr.smithi073.msdoog (mgr.14182) 778 : audit [DBG] from='client.15660 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:29.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:39:28.880181+0000 mgr.smithi073.msdoog (mgr.14182) 779 : cluster [DBG] pgmap v474: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:30.247 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:39:31.216 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:30 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:39:30.880881+0000 mgr.smithi073.msdoog (mgr.14182) 780 : cluster [DBG] pgmap v475: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:31.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:30 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:39:30.880881+0000 mgr.smithi073.msdoog (mgr.14182) 780 : cluster [DBG] pgmap v475: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:31.563 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:39:31.564 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:39:31.940 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:39:32.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:31 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:39:31.563051+0000 mgr.smithi073.msdoog (mgr.14182) 781 : audit [DBG] from='client.15664 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:32.311 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:31 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:39:31.563051+0000 mgr.smithi073.msdoog (mgr.14182) 781 : audit [DBG] from='client.15664 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:32.942 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:39:33.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:32 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:39:32.881721+0000 mgr.smithi073.msdoog (mgr.14182) 782 : cluster [DBG] pgmap v476: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:39:33.297 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:32 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:39:32.881721+0000 mgr.smithi073.msdoog (mgr.14182) 782 : cluster [DBG] pgmap v476: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:39:34.290 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:39:34.290 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:39:34.661 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:39:35.662 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:39:35.696 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:35 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:39:34.289539+0000 mgr.smithi073.msdoog (mgr.14182) 783 : audit [DBG] from='client.15668 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:35.696 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:35 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:39:34.882330+0000 mgr.smithi073.msdoog (mgr.14182) 784 : cluster [DBG] pgmap v477: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:36.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:35 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:39:34.289539+0000 mgr.smithi073.msdoog (mgr.14182) 783 : audit [DBG] from='client.15668 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:36.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:35 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:39:34.882330+0000 mgr.smithi073.msdoog (mgr.14182) 784 : cluster [DBG] pgmap v477: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:36.961 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:39:36.961 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:39:37.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:36 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:39:36.883029+0000 mgr.smithi073.msdoog (mgr.14182) 785 : cluster [DBG] pgmap v478: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:37.310 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:36 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:39:36.883029+0000 mgr.smithi073.msdoog (mgr.14182) 785 : cluster [DBG] pgmap v478: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:37.337 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:39:38.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:37 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:39:36.959950+0000 mgr.smithi073.msdoog (mgr.14182) 786 : audit [DBG] from='client.15672 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:38.311 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:37 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:39:36.959950+0000 mgr.smithi073.msdoog (mgr.14182) 786 : audit [DBG] from='client.15672 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:38.338 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:39:39.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:38 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:39:38.883692+0000 mgr.smithi073.msdoog (mgr.14182) 787 : cluster [DBG] pgmap v479: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:39.308 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:38 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:39:38.883692+0000 mgr.smithi073.msdoog (mgr.14182) 787 : cluster [DBG] pgmap v479: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:39.661 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:39:39.662 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:39:40.037 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:39:41.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:40 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:39:39.661235+0000 mgr.smithi073.msdoog (mgr.14182) 788 : audit [DBG] from='client.15676 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:41.038 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:39:41.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:40 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:39:39.661235+0000 mgr.smithi073.msdoog (mgr.14182) 788 : audit [DBG] from='client.15676 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:41.673 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:41 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:39:40.884495+0000 mgr.smithi073.msdoog (mgr.14182) 789 : cluster [DBG] pgmap v480: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:41.978 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:41 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:39:40.884495+0000 mgr.smithi073.msdoog (mgr.14182) 789 : cluster [DBG] pgmap v480: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:42.388 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:39:42.388 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:39:42.769 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:39:43.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:42 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:39:42.387543+0000 mgr.smithi073.msdoog (mgr.14182) 790 : audit [DBG] from='client.15680 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:43.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:42 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:39:42.885230+0000 mgr.smithi073.msdoog (mgr.14182) 791 : cluster [DBG] pgmap v481: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:39:43.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:42 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:39:42.387543+0000 mgr.smithi073.msdoog (mgr.14182) 790 : audit [DBG] from='client.15680 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:43.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:42 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:39:42.885230+0000 mgr.smithi073.msdoog (mgr.14182) 791 : cluster [DBG] pgmap v481: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:39:43.770 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:39:45.120 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:39:45.121 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:39:45.503 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:39:45.811 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:45 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:39:44.885838+0000 mgr.smithi073.msdoog (mgr.14182) 792 : cluster [DBG] pgmap v482: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:46.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:45 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:39:44.885838+0000 mgr.smithi073.msdoog (mgr.14182) 792 : cluster [DBG] pgmap v482: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:46.504 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:39:46.811 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:39:45.120123+0000 mgr.smithi073.msdoog (mgr.14182) 793 : audit [DBG] from='client.15684 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:47.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:39:45.120123+0000 mgr.smithi073.msdoog (mgr.14182) 793 : audit [DBG] from='client.15684 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:47.811 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:47 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:39:46.886578+0000 mgr.smithi073.msdoog (mgr.14182) 794 : cluster [DBG] pgmap v483: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:47.853 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:39:47.853 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:39:48.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:47 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:39:46.886578+0000 mgr.smithi073.msdoog (mgr.14182) 794 : cluster [DBG] pgmap v483: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:48.258 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:39:49.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:48 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:39:47.852843+0000 mgr.smithi073.msdoog (mgr.14182) 795 : audit [DBG] from='client.15688 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:49.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:48 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:39:47.852843+0000 mgr.smithi073.msdoog (mgr.14182) 795 : audit [DBG] from='client.15688 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:49.259 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:39:49.930 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:49 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:39:48.887349+0000 mgr.smithi073.msdoog (mgr.14182) 796 : cluster [DBG] pgmap v484: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:50.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:49 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:39:48.887349+0000 mgr.smithi073.msdoog (mgr.14182) 796 : cluster [DBG] pgmap v484: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:50.630 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:39:50.630 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:39:51.034 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:39:51.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:39:50.628807+0000 mgr.smithi073.msdoog (mgr.14182) 797 : audit [DBG] from='client.15692 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:51.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:39:50.887968+0000 mgr.smithi073.msdoog (mgr.14182) 798 : cluster [DBG] pgmap v485: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:51.311 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:39:50.628807+0000 mgr.smithi073.msdoog (mgr.14182) 797 : audit [DBG] from='client.15692 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:51.311 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:39:50.887968+0000 mgr.smithi073.msdoog (mgr.14182) 798 : cluster [DBG] pgmap v485: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:52.035 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:39:53.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:52 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:39:52.888914+0000 mgr.smithi073.msdoog (mgr.14182) 799 : cluster [DBG] pgmap v486: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:39:53.311 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:52 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:39:52.888914+0000 mgr.smithi073.msdoog (mgr.14182) 799 : cluster [DBG] pgmap v486: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:39:53.399 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:39:53.399 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:39:53.768 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:39:54.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:53 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:39:53.398849+0000 mgr.smithi073.msdoog (mgr.14182) 800 : audit [DBG] from='client.15696 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:54.311 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:53 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:39:53.398849+0000 mgr.smithi073.msdoog (mgr.14182) 800 : audit [DBG] from='client.15696 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:54.769 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:39:55.730 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:39:54.889505+0000 mgr.smithi073.msdoog (mgr.14182) 801 : cluster [DBG] pgmap v487: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:56.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:39:54.889505+0000 mgr.smithi073.msdoog (mgr.14182) 801 : cluster [DBG] pgmap v487: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:56.091 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:39:56.091 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:39:56.468 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:39:57.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:56 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:39:56.090805+0000 mgr.smithi073.msdoog (mgr.14182) 802 : audit [DBG] from='client.15700 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:57.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:56 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:39:56.890095+0000 mgr.smithi073.msdoog (mgr.14182) 803 : cluster [DBG] pgmap v488: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:57.311 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:56 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:39:56.090805+0000 mgr.smithi073.msdoog (mgr.14182) 802 : audit [DBG] from='client.15700 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:57.311 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:56 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:39:56.890095+0000 mgr.smithi073.msdoog (mgr.14182) 803 : cluster [DBG] pgmap v488: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:57.469 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:39:58.800 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:39:58.800 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:39:59.123 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:58 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:39:58.799142+0000 mgr.smithi073.msdoog (mgr.14182) 804 : audit [DBG] from='client.15704 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:59.124 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:39:58 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:39:58.890768+0000 mgr.smithi073.msdoog (mgr.14182) 805 : cluster [DBG] pgmap v489: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:39:59.199 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:39:59.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:58 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:39:58.799142+0000 mgr.smithi073.msdoog (mgr.14182) 804 : audit [DBG] from='client.15704 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:39:59.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:39:58 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:39:58.890768+0000 mgr.smithi073.msdoog (mgr.14182) 805 : cluster [DBG] pgmap v489: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:00.201 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:40:00.862 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:00 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:40:00.000147+0000 mon.smithi073 (mon.0) 708 : cluster [INF] overall HEALTH_OK 2024-01-27T23:40:01.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:00 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:40:00.000147+0000 mon.smithi073 (mon.0) 708 : cluster [INF] overall HEALTH_OK 2024-01-27T23:40:01.550 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:40:01.550 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:40:01.873 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:01 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:40:00.891373+0000 mgr.smithi073.msdoog (mgr.14182) 806 : cluster [DBG] pgmap v490: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:01.925 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:40:01.979 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:01 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:40:00.891373+0000 mgr.smithi073.msdoog (mgr.14182) 806 : cluster [DBG] pgmap v490: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:02.926 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:40:02.961 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:02 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:40:01.549573+0000 mgr.smithi073.msdoog (mgr.14182) 807 : audit [DBG] from='client.15708 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:03.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:02 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:40:01.549573+0000 mgr.smithi073.msdoog (mgr.14182) 807 : audit [DBG] from='client.15708 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:03.921 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:03 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:40:02.892351+0000 mgr.smithi073.msdoog (mgr.14182) 808 : cluster [DBG] pgmap v491: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:40:04.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:03 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:40:02.892351+0000 mgr.smithi073.msdoog (mgr.14182) 808 : cluster [DBG] pgmap v491: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:40:04.290 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:40:04.291 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:40:04.657 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:40:05.659 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:40:05.688 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:05 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:40:04.290105+0000 mgr.smithi073.msdoog (mgr.14182) 809 : audit [DBG] from='client.15712 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:05.688 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:05 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:40:04.892975+0000 mgr.smithi073.msdoog (mgr.14182) 810 : cluster [DBG] pgmap v492: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:06.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:05 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:40:04.290105+0000 mgr.smithi073.msdoog (mgr.14182) 809 : audit [DBG] from='client.15712 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:06.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:05 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:40:04.892975+0000 mgr.smithi073.msdoog (mgr.14182) 810 : cluster [DBG] pgmap v492: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:06.959 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:40:06.959 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:40:07.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:06 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:40:06.893502+0000 mgr.smithi073.msdoog (mgr.14182) 811 : cluster [DBG] pgmap v493: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:07.280 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:06 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:40:06.893502+0000 mgr.smithi073.msdoog (mgr.14182) 811 : cluster [DBG] pgmap v493: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:07.340 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:40:08.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:07 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:40:06.958030+0000 mgr.smithi073.msdoog (mgr.14182) 812 : audit [DBG] from='client.15716 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:08.311 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:07 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:40:06.958030+0000 mgr.smithi073.msdoog (mgr.14182) 812 : audit [DBG] from='client.15716 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:08.341 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:40:09.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:08 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:40:08.894319+0000 mgr.smithi073.msdoog (mgr.14182) 813 : cluster [DBG] pgmap v494: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:09.311 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:08 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:40:08.894319+0000 mgr.smithi073.msdoog (mgr.14182) 813 : cluster [DBG] pgmap v494: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:09.681 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:40:09.681 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:40:10.048 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:40:11.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:10 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:40:09.680420+0000 mgr.smithi073.msdoog (mgr.14182) 814 : audit [DBG] from='client.15720 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:11.049 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:40:11.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:10 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:40:09.680420+0000 mgr.smithi073.msdoog (mgr.14182) 814 : audit [DBG] from='client.15720 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:11.888 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:11 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:40:10.895027+0000 mgr.smithi073.msdoog (mgr.14182) 815 : cluster [DBG] pgmap v495: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:11.979 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:11 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:40:10.895027+0000 mgr.smithi073.msdoog (mgr.14182) 815 : cluster [DBG] pgmap v495: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:12.415 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:40:12.415 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:40:12.790 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:40:13.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:12 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:40:12.413493+0000 mgr.smithi073.msdoog (mgr.14182) 816 : audit [DBG] from='client.15724 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:13.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:12 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:40:12.895789+0000 mgr.smithi073.msdoog (mgr.14182) 817 : cluster [DBG] pgmap v496: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:40:13.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:12 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:40:12.413493+0000 mgr.smithi073.msdoog (mgr.14182) 816 : audit [DBG] from='client.15724 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:13.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:12 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:40:12.895789+0000 mgr.smithi073.msdoog (mgr.14182) 817 : cluster [DBG] pgmap v496: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:40:13.791 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:40:15.186 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:40:15.187 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:40:15.573 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:40:15.811 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:15 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:40:14.896354+0000 mgr.smithi073.msdoog (mgr.14182) 818 : cluster [DBG] pgmap v497: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:16.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:15 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:40:14.896354+0000 mgr.smithi073.msdoog (mgr.14182) 818 : cluster [DBG] pgmap v497: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:16.574 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:40:16.916 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:40:15.185971+0000 mgr.smithi073.msdoog (mgr.14182) 819 : audit [DBG] from='client.15728 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:17.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:40:15.185971+0000 mgr.smithi073.msdoog (mgr.14182) 819 : audit [DBG] from='client.15728 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:17.974 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:40:17.974 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:40:18.004 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:17 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:40:16.896980+0000 mgr.smithi073.msdoog (mgr.14182) 820 : cluster [DBG] pgmap v498: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:18.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:17 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:40:16.896980+0000 mgr.smithi073.msdoog (mgr.14182) 820 : cluster [DBG] pgmap v498: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:18.355 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:40:19.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:18 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:40:17.973087+0000 mgr.smithi073.msdoog (mgr.14182) 821 : audit [DBG] from='client.15732 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:19.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:18 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:40:18.897667+0000 mgr.smithi073.msdoog (mgr.14182) 822 : cluster [DBG] pgmap v499: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:19.311 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:18 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:40:17.973087+0000 mgr.smithi073.msdoog (mgr.14182) 821 : audit [DBG] from='client.15732 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:19.312 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:18 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:40:18.897667+0000 mgr.smithi073.msdoog (mgr.14182) 822 : cluster [DBG] pgmap v499: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:19.356 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:40:20.733 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:40:20.733 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:40:21.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:40:20.732102+0000 mgr.smithi073.msdoog (mgr.14182) 823 : audit [DBG] from='client.15736 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:21.053 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:40:20.898475+0000 mgr.smithi073.msdoog (mgr.14182) 824 : cluster [DBG] pgmap v500: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:21.114 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:40:21.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:40:20.732102+0000 mgr.smithi073.msdoog (mgr.14182) 823 : audit [DBG] from='client.15736 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:21.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:40:20.898475+0000 mgr.smithi073.msdoog (mgr.14182) 824 : cluster [DBG] pgmap v500: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:22.116 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:40:23.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:22 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:40:22.899218+0000 mgr.smithi073.msdoog (mgr.14182) 825 : cluster [DBG] pgmap v501: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:40:23.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:22 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:40:22.899218+0000 mgr.smithi073.msdoog (mgr.14182) 825 : cluster [DBG] pgmap v501: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:40:23.453 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:40:23.453 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:32:44.963114Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.nvqsmk on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:40:23.838 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:40:24.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:23 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:40:23.452881+0000 mgr.smithi073.msdoog (mgr.14182) 826 : audit [DBG] from='client.15740 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:24.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:23 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:40:23.452881+0000 mgr.smithi073.msdoog (mgr.14182) 826 : audit [DBG] from='client.15740 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:24.840 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:40:25.220 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:40:24.625023+0000 mgr.smithi073.msdoog (mgr.14182) 827 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh 2024-01-27T23:40:25.221 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh 2024-01-27T23:40:25.221 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh 2024-01-27T23:40:25.221 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh 2024-01-27T23:40:25.221 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Deploy daemon haproxy.nfs.foo.smithi186.dyryxh ... 2024-01-27T23:40:25.221 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:40:25.221 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2024-01-27T23:40:25.221 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:38:31Z" level=warning msg="Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:40:25.221 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:39:09Z" level=warning msg="Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:40:25.221 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:39:47Z" level=warning msg="Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:40:25.221 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2024-01-27T23:40:25.221 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:40:25.221 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Traceback (most recent call last): 2024-01-27T23:40:25.221 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:40:25.222 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: yield (conn, connr) 2024-01-27T23:40:25.222 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:40:25.222 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: code, '\n'.join(err))) 2024-01-27T23:40:25.222 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh 2024-01-27T23:40:25.222 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh 2024-01-27T23:40:25.222 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh 2024-01-27T23:40:25.222 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh 2024-01-27T23:40:25.222 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Deploy daemon haproxy.nfs.foo.smithi186.dyryxh ... 2024-01-27T23:40:25.222 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:40:25.222 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2024-01-27T23:40:25.222 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:38:31Z" level=warning msg="Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:40:25.222 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:39:09Z" level=warning msg="Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:40:25.222 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:39:47Z" level=warning msg="Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:40:25.222 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2024-01-27T23:40:25.223 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:40:25.223 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:40:24.625206+0000 mgr.smithi073.msdoog (mgr.14182) 828 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi186.dyryxh 2024-01-27T23:40:25.223 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:40:24.625541+0000 mon.smithi073 (mon.0) 709 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi186.dyryxh"}]: dispatch 2024-01-27T23:40:25.223 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:40:24.626202+0000 mgr.smithi073.msdoog (mgr.14182) 829 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh 2024-01-27T23:40:25.223 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh 2024-01-27T23:40:25.223 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh 2024-01-27T23:40:25.223 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh 2024-01-27T23:40:25.223 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Deploy daemon haproxy.nfs.foo.smithi186.dyryxh ... 2024-01-27T23:40:25.223 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:40:25.223 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2024-01-27T23:40:25.223 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:38:31Z" level=warning msg="Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:40:25.223 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:39:09Z" level=warning msg="Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:40:25.223 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:39:47Z" level=warning msg="Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:40:25.223 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2024-01-27T23:40:25.224 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:40:25.224 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:40:24.628431+0000 mgr.smithi073.msdoog (mgr.14182) 830 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi073.hqsgfi on smithi073 2024-01-27T23:40:25.224 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:40:24.899809+0000 mgr.smithi073.msdoog (mgr.14182) 831 : cluster [DBG] pgmap v502: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:25.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:40:24.625023+0000 mgr.smithi073.msdoog (mgr.14182) 827 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh 2024-01-27T23:40:25.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh 2024-01-27T23:40:25.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh 2024-01-27T23:40:25.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh 2024-01-27T23:40:25.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Deploy daemon haproxy.nfs.foo.smithi186.dyryxh ... 2024-01-27T23:40:25.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:40:25.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2024-01-27T23:40:25.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:38:31Z" level=warning msg="Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:40:25.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:39:09Z" level=warning msg="Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:40:25.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:39:47Z" level=warning msg="Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:40:25.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2024-01-27T23:40:25.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:40:25.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Traceback (most recent call last): 2024-01-27T23:40:25.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:40:25.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: yield (conn, connr) 2024-01-27T23:40:25.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:40:25.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: code, '\n'.join(err))) 2024-01-27T23:40:25.264 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh 2024-01-27T23:40:25.264 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh 2024-01-27T23:40:25.264 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh 2024-01-27T23:40:25.264 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh 2024-01-27T23:40:25.264 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Deploy daemon haproxy.nfs.foo.smithi186.dyryxh ... 2024-01-27T23:40:25.264 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:40:25.264 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2024-01-27T23:40:25.264 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:38:31Z" level=warning msg="Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:40:25.264 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:39:09Z" level=warning msg="Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:40:25.264 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:39:47Z" level=warning msg="Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:40:25.264 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2024-01-27T23:40:25.264 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:40:25.264 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:40:24.625206+0000 mgr.smithi073.msdoog (mgr.14182) 828 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi186.dyryxh 2024-01-27T23:40:25.264 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:40:24.625541+0000 mon.smithi073 (mon.0) 709 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi186.dyryxh"}]: dispatch 2024-01-27T23:40:25.265 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:40:24.626202+0000 mgr.smithi073.msdoog (mgr.14182) 829 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh 2024-01-27T23:40:25.265 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh 2024-01-27T23:40:25.265 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh 2024-01-27T23:40:25.265 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh 2024-01-27T23:40:25.265 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Deploy daemon haproxy.nfs.foo.smithi186.dyryxh ... 2024-01-27T23:40:25.265 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:40:25.265 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2024-01-27T23:40:25.265 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:38:31Z" level=warning msg="Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:40:25.265 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:39:09Z" level=warning msg="Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:40:25.265 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:39:47Z" level=warning msg="Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:40:25.265 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2024-01-27T23:40:25.265 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:40:25.265 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:40:24.628431+0000 mgr.smithi073.msdoog (mgr.14182) 830 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi073.hqsgfi on smithi073 2024-01-27T23:40:25.265 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:40:24.899809+0000 mgr.smithi073.msdoog (mgr.14182) 831 : cluster [DBG] pgmap v502: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:26.204 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:40:26.205 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:40:26.563 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:40:27.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:26 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:40:26.203647+0000 mgr.smithi073.msdoog (mgr.14182) 832 : audit [DBG] from='client.15744 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:27.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:26 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:40:26.900449+0000 mgr.smithi073.msdoog (mgr.14182) 833 : cluster [DBG] pgmap v503: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:27.311 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:26 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:40:26.203647+0000 mgr.smithi073.msdoog (mgr.14182) 832 : audit [DBG] from='client.15744 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:27.311 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:26 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:40:26.900449+0000 mgr.smithi073.msdoog (mgr.14182) 833 : cluster [DBG] pgmap v503: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:27.564 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:40:28.872 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:40:28.872 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:40:29.160 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:40:28.870980+0000 mgr.smithi073.msdoog (mgr.14182) 834 : audit [DBG] from='client.15748 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:29.160 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:40:28.901304+0000 mgr.smithi073.msdoog (mgr.14182) 835 : cluster [DBG] pgmap v504: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:29.192 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:40:29.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:40:28.870980+0000 mgr.smithi073.msdoog (mgr.14182) 834 : audit [DBG] from='client.15748 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:29.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:40:28.901304+0000 mgr.smithi073.msdoog (mgr.14182) 835 : cluster [DBG] pgmap v504: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:30.193 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:40:31.200 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:30 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:40:30.901931+0000 mgr.smithi073.msdoog (mgr.14182) 836 : cluster [DBG] pgmap v505: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:31.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:30 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:40:30.901931+0000 mgr.smithi073.msdoog (mgr.14182) 836 : cluster [DBG] pgmap v505: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:31.555 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:40:31.556 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:40:31.936 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:40:32.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:31 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:40:31.554139+0000 mgr.smithi073.msdoog (mgr.14182) 837 : audit [DBG] from='client.15752 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:32.311 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:31 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:40:31.554139+0000 mgr.smithi073.msdoog (mgr.14182) 837 : audit [DBG] from='client.15752 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:32.938 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:40:33.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:32 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:40:32.902855+0000 mgr.smithi073.msdoog (mgr.14182) 838 : cluster [DBG] pgmap v506: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:40:33.298 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:32 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:40:32.902855+0000 mgr.smithi073.msdoog (mgr.14182) 838 : cluster [DBG] pgmap v506: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:40:34.302 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:40:34.302 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:40:34.679 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:40:35.680 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:40:35.711 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:35 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:40:34.301085+0000 mgr.smithi073.msdoog (mgr.14182) 839 : audit [DBG] from='client.15756 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:35.712 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:35 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:40:34.903513+0000 mgr.smithi073.msdoog (mgr.14182) 840 : cluster [DBG] pgmap v507: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:36.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:35 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:40:34.301085+0000 mgr.smithi073.msdoog (mgr.14182) 839 : audit [DBG] from='client.15756 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:36.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:35 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:40:34.903513+0000 mgr.smithi073.msdoog (mgr.14182) 840 : cluster [DBG] pgmap v507: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:37.022 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:40:37.022 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:40:37.261 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:36 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:40:36.904058+0000 mgr.smithi073.msdoog (mgr.14182) 841 : cluster [DBG] pgmap v508: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:37.311 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:36 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:40:36.904058+0000 mgr.smithi073.msdoog (mgr.14182) 841 : cluster [DBG] pgmap v508: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:37.403 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:40:38.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:37 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:40:37.021140+0000 mgr.smithi073.msdoog (mgr.14182) 842 : audit [DBG] from='client.15760 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:38.312 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:37 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:40:37.021140+0000 mgr.smithi073.msdoog (mgr.14182) 842 : audit [DBG] from='client.15760 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:38.404 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:40:39.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:38 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:40:38.904724+0000 mgr.smithi073.msdoog (mgr.14182) 843 : cluster [DBG] pgmap v509: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:39.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:38 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:40:38.904724+0000 mgr.smithi073.msdoog (mgr.14182) 843 : cluster [DBG] pgmap v509: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:39.751 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:40:39.751 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:40:40.127 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:40:41.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:40 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:40:39.750239+0000 mgr.smithi073.msdoog (mgr.14182) 844 : audit [DBG] from='client.15764 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:41.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:40 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:40:39.750239+0000 mgr.smithi073.msdoog (mgr.14182) 844 : audit [DBG] from='client.15764 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:41.128 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:40:42.448 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:40:42.448 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:40:42.767 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:42 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:40:40.905441+0000 mgr.smithi073.msdoog (mgr.14182) 845 : cluster [DBG] pgmap v510: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:42.827 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:40:43.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:42 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:40:40.905441+0000 mgr.smithi073.msdoog (mgr.14182) 845 : cluster [DBG] pgmap v510: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:43.827 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:40:44.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:43 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:40:42.447109+0000 mgr.smithi073.msdoog (mgr.14182) 846 : audit [DBG] from='client.15768 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:44.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:43 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:40:42.447109+0000 mgr.smithi073.msdoog (mgr.14182) 846 : audit [DBG] from='client.15768 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:44.790 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:40:42.906432+0000 mgr.smithi073.msdoog (mgr.14182) 847 : cluster [DBG] pgmap v511: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:40:45.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:44 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:40:42.906432+0000 mgr.smithi073.msdoog (mgr.14182) 847 : cluster [DBG] pgmap v511: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:40:45.151 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:40:45.151 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:40:45.494 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:40:46.495 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:40:46.811 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:40:44.907144+0000 mgr.smithi073.msdoog (mgr.14182) 848 : cluster [DBG] pgmap v512: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:46.811 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:40:45.150191+0000 mgr.smithi073.msdoog (mgr.14182) 849 : audit [DBG] from='client.15772 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:47.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:40:44.907144+0000 mgr.smithi073.msdoog (mgr.14182) 848 : cluster [DBG] pgmap v512: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:47.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:40:45.150191+0000 mgr.smithi073.msdoog (mgr.14182) 849 : audit [DBG] from='client.15772 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:47.829 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:40:47.829 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:40:48.218 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:40:49.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:48 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:40:46.907668+0000 mgr.smithi073.msdoog (mgr.14182) 850 : cluster [DBG] pgmap v513: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:49.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:48 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:40:47.827845+0000 mgr.smithi073.msdoog (mgr.14182) 851 : audit [DBG] from='client.15776 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:49.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:48 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:40:46.907668+0000 mgr.smithi073.msdoog (mgr.14182) 850 : cluster [DBG] pgmap v513: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:49.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:48 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:40:47.827845+0000 mgr.smithi073.msdoog (mgr.14182) 851 : audit [DBG] from='client.15776 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:49.220 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:40:50.611 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:40:50.611 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:40:50.957 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:40:48.908478+0000 mgr.smithi073.msdoog (mgr.14182) 852 : cluster [DBG] pgmap v514: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:51.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:40:48.908478+0000 mgr.smithi073.msdoog (mgr.14182) 852 : cluster [DBG] pgmap v514: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:51.035 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:40:51.979 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:51 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:40:50.610208+0000 mgr.smithi073.msdoog (mgr.14182) 853 : audit [DBG] from='client.15780 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:52.037 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:40:52.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:51 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:40:50.610208+0000 mgr.smithi073.msdoog (mgr.14182) 853 : audit [DBG] from='client.15780 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:53.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:52 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:40:50.909154+0000 mgr.smithi073.msdoog (mgr.14182) 854 : cluster [DBG] pgmap v515: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:53.038 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:52 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:40:50.909154+0000 mgr.smithi073.msdoog (mgr.14182) 854 : cluster [DBG] pgmap v515: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:53.386 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:40:53.386 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:40:53.783 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:40:54.783 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:40:55.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:54 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:40:52.910025+0000 mgr.smithi073.msdoog (mgr.14182) 855 : cluster [DBG] pgmap v516: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:40:55.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:54 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:40:53.385130+0000 mgr.smithi073.msdoog (mgr.14182) 856 : audit [DBG] from='client.15784 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:55.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:54 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:40:52.910025+0000 mgr.smithi073.msdoog (mgr.14182) 855 : cluster [DBG] pgmap v516: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:40:55.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:54 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:40:53.385130+0000 mgr.smithi073.msdoog (mgr.14182) 856 : audit [DBG] from='client.15784 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:56.061 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:40:56.061 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:40:56.441 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:40:57.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:56 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:40:54.910570+0000 mgr.smithi073.msdoog (mgr.14182) 857 : cluster [DBG] pgmap v517: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:57.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:56 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:40:54.910570+0000 mgr.smithi073.msdoog (mgr.14182) 857 : cluster [DBG] pgmap v517: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:57.442 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:40:57.812 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:57 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:40:56.060080+0000 mgr.smithi073.msdoog (mgr.14182) 858 : audit [DBG] from='client.15788 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:58.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:57 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:40:56.060080+0000 mgr.smithi073.msdoog (mgr.14182) 858 : audit [DBG] from='client.15788 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:40:58.812 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:58 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:40:56.911303+0000 mgr.smithi073.msdoog (mgr.14182) 859 : cluster [DBG] pgmap v518: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:58.843 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:40:58.843 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:40:59.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:58 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:40:56.911303+0000 mgr.smithi073.msdoog (mgr.14182) 859 : cluster [DBG] pgmap v518: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:40:59.175 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:41:00.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:40:59 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:40:58.842166+0000 mgr.smithi073.msdoog (mgr.14182) 860 : audit [DBG] from='client.15792 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:00.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:40:59 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:40:58.842166+0000 mgr.smithi073.msdoog (mgr.14182) 860 : audit [DBG] from='client.15792 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:00.175 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:41:00.811 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:00 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:40:58.911948+0000 mgr.smithi073.msdoog (mgr.14182) 861 : cluster [DBG] pgmap v519: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:01.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:00 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:40:58.911948+0000 mgr.smithi073.msdoog (mgr.14182) 861 : cluster [DBG] pgmap v519: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:01.518 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:41:01.519 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:41:01.899 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:41:02.900 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:41:03.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:02 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:41:00.912379+0000 mgr.smithi073.msdoog (mgr.14182) 862 : cluster [DBG] pgmap v520: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:03.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:02 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:41:01.516860+0000 mgr.smithi073.msdoog (mgr.14182) 863 : audit [DBG] from='client.15796 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:03.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:02 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:41:00.912379+0000 mgr.smithi073.msdoog (mgr.14182) 862 : cluster [DBG] pgmap v520: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:03.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:02 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:41:01.516860+0000 mgr.smithi073.msdoog (mgr.14182) 863 : audit [DBG] from='client.15796 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:04.247 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:41:04.247 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:41:04.623 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:41:04.812 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:04 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:41:02.913259+0000 mgr.smithi073.msdoog (mgr.14182) 864 : cluster [DBG] pgmap v521: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:41:05.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:04 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:41:02.913259+0000 mgr.smithi073.msdoog (mgr.14182) 864 : cluster [DBG] pgmap v521: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:41:05.624 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:41:05.984 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:05 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:41:04.245938+0000 mgr.smithi073.msdoog (mgr.14182) 865 : audit [DBG] from='client.15800 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:06.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:05 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:41:04.245938+0000 mgr.smithi073.msdoog (mgr.14182) 865 : audit [DBG] from='client.15800 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:06.986 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:41:06.986 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:41:07.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:06 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:41:04.913983+0000 mgr.smithi073.msdoog (mgr.14182) 866 : cluster [DBG] pgmap v522: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:07.015 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:06 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:41:04.913983+0000 mgr.smithi073.msdoog (mgr.14182) 866 : cluster [DBG] pgmap v522: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:07.357 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:41:08.358 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:41:09.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:08 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:41:06.914474+0000 mgr.smithi073.msdoog (mgr.14182) 867 : cluster [DBG] pgmap v523: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:09.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:08 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:41:06.985038+0000 mgr.smithi073.msdoog (mgr.14182) 868 : audit [DBG] from='client.15804 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:09.026 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:08 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:41:06.914474+0000 mgr.smithi073.msdoog (mgr.14182) 867 : cluster [DBG] pgmap v523: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:09.026 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:08 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:41:06.985038+0000 mgr.smithi073.msdoog (mgr.14182) 868 : audit [DBG] from='client.15804 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:09.734 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:41:09.734 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:41:10.115 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:41:11.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:10 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:41:08.915075+0000 mgr.smithi073.msdoog (mgr.14182) 869 : cluster [DBG] pgmap v524: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:11.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:10 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:41:09.733252+0000 mgr.smithi073.msdoog (mgr.14182) 870 : audit [DBG] from='client.15808 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:11.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:10 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:41:08.915075+0000 mgr.smithi073.msdoog (mgr.14182) 869 : cluster [DBG] pgmap v524: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:11.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:10 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:41:09.733252+0000 mgr.smithi073.msdoog (mgr.14182) 870 : audit [DBG] from='client.15808 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:11.115 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:41:12.431 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:41:12.431 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:41:12.806 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:41:13.011 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:12 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:41:10.915601+0000 mgr.smithi073.msdoog (mgr.14182) 871 : cluster [DBG] pgmap v525: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:13.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:12 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:41:10.915601+0000 mgr.smithi073.msdoog (mgr.14182) 871 : cluster [DBG] pgmap v525: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:13.807 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:41:14.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:13 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:41:12.429707+0000 mgr.smithi073.msdoog (mgr.14182) 872 : audit [DBG] from='client.15812 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:14.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:13 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:41:12.429707+0000 mgr.smithi073.msdoog (mgr.14182) 872 : audit [DBG] from='client.15812 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:15.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:14 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:41:12.916283+0000 mgr.smithi073.msdoog (mgr.14182) 873 : cluster [DBG] pgmap v526: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:41:15.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:14 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:41:12.916283+0000 mgr.smithi073.msdoog (mgr.14182) 873 : cluster [DBG] pgmap v526: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:41:15.208 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:41:15.208 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:41:15.548 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:41:16.550 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:41:16.890 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:41:14.916908+0000 mgr.smithi073.msdoog (mgr.14182) 874 : cluster [DBG] pgmap v527: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:16.890 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:41:15.206963+0000 mgr.smithi073.msdoog (mgr.14182) 875 : audit [DBG] from='client.15816 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:17.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:41:14.916908+0000 mgr.smithi073.msdoog (mgr.14182) 874 : cluster [DBG] pgmap v527: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:17.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:41:15.206963+0000 mgr.smithi073.msdoog (mgr.14182) 875 : audit [DBG] from='client.15816 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:17.889 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:41:17.889 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:41:18.264 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:41:19.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:18 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:41:16.917530+0000 mgr.smithi073.msdoog (mgr.14182) 876 : cluster [DBG] pgmap v528: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:19.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:18 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:41:17.887547+0000 mgr.smithi073.msdoog (mgr.14182) 877 : audit [DBG] from='client.15820 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:19.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:18 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:41:16.917530+0000 mgr.smithi073.msdoog (mgr.14182) 876 : cluster [DBG] pgmap v528: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:19.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:18 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:41:17.887547+0000 mgr.smithi073.msdoog (mgr.14182) 877 : audit [DBG] from='client.15820 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:19.265 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:41:20.607 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:41:20.607 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:41:20.912 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:41:18.918396+0000 mgr.smithi073.msdoog (mgr.14182) 878 : cluster [DBG] pgmap v529: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:20.971 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:41:21.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:41:18.918396+0000 mgr.smithi073.msdoog (mgr.14182) 878 : cluster [DBG] pgmap v529: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:21.972 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:41:22.005 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:21 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:41:20.606669+0000 mgr.smithi073.msdoog (mgr.14182) 879 : audit [DBG] from='client.15824 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:22.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:21 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:41:20.606669+0000 mgr.smithi073.msdoog (mgr.14182) 879 : audit [DBG] from='client.15824 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:22.934 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:22 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:41:20.919035+0000 mgr.smithi073.msdoog (mgr.14182) 880 : cluster [DBG] pgmap v530: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:23.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:22 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:41:20.919035+0000 mgr.smithi073.msdoog (mgr.14182) 880 : cluster [DBG] pgmap v530: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:23.286 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:41:23.286 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:41:23.696 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:41:24.696 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:41:25.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:41:22.919785+0000 mgr.smithi073.msdoog (mgr.14182) 881 : cluster [DBG] pgmap v531: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:41:25.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:41:23.284648+0000 mgr.smithi073.msdoog (mgr.14182) 882 : audit [DBG] from='client.15828 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:25.032 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:41:22.919785+0000 mgr.smithi073.msdoog (mgr.14182) 881 : cluster [DBG] pgmap v531: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:41:25.032 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:41:23.284648+0000 mgr.smithi073.msdoog (mgr.14182) 882 : audit [DBG] from='client.15828 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:26.065 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:41:26.065 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:41:26.446 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:41:27.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:26 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:41:24.920317+0000 mgr.smithi073.msdoog (mgr.14182) 883 : cluster [DBG] pgmap v532: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:27.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:26 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:41:24.920317+0000 mgr.smithi073.msdoog (mgr.14182) 883 : cluster [DBG] pgmap v532: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:27.447 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:41:28.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:27 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:41:26.064014+0000 mgr.smithi073.msdoog (mgr.14182) 884 : audit [DBG] from='client.15832 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:28.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:27 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:41:26.064014+0000 mgr.smithi073.msdoog (mgr.14182) 884 : audit [DBG] from='client.15832 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:28.870 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:41:28.870 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:41:29.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:41:26.921052+0000 mgr.smithi073.msdoog (mgr.14182) 885 : cluster [DBG] pgmap v533: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:29.023 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:41:26.921052+0000 mgr.smithi073.msdoog (mgr.14182) 885 : cluster [DBG] pgmap v533: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:29.237 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:41:30.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:29 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:41:28.869193+0000 mgr.smithi073.msdoog (mgr.14182) 886 : audit [DBG] from='client.15836 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:30.238 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:41:30.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:41:28.869193+0000 mgr.smithi073.msdoog (mgr.14182) 886 : audit [DBG] from='client.15836 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:30.882 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:30 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:41:28.921556+0000 mgr.smithi073.msdoog (mgr.14182) 887 : cluster [DBG] pgmap v534: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:31.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:30 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:41:28.921556+0000 mgr.smithi073.msdoog (mgr.14182) 887 : cluster [DBG] pgmap v534: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:31.557 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:41:31.557 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:41:32.013 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:41:33.014 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:41:33.048 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:32 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:41:30.922145+0000 mgr.smithi073.msdoog (mgr.14182) 888 : cluster [DBG] pgmap v535: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:33.048 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:32 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:41:31.556158+0000 mgr.smithi073.msdoog (mgr.14182) 889 : audit [DBG] from='client.15840 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:33.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:32 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:41:30.922145+0000 mgr.smithi073.msdoog (mgr.14182) 888 : cluster [DBG] pgmap v535: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:33.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:32 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:41:31.556158+0000 mgr.smithi073.msdoog (mgr.14182) 889 : audit [DBG] from='client.15840 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:34.344 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:41:34.344 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:41:34.714 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:41:35.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:34 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:41:32.923018+0000 mgr.smithi073.msdoog (mgr.14182) 890 : cluster [DBG] pgmap v536: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:41:35.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:34 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:41:32.923018+0000 mgr.smithi073.msdoog (mgr.14182) 890 : cluster [DBG] pgmap v536: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:41:35.715 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:41:36.029 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:35 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:41:34.342337+0000 mgr.smithi073.msdoog (mgr.14182) 891 : audit [DBG] from='client.15844 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:36.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:35 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:41:34.342337+0000 mgr.smithi073.msdoog (mgr.14182) 891 : audit [DBG] from='client.15844 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:37.023 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:41:37.023 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:41:37.047 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:36 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:41:34.923607+0000 mgr.smithi073.msdoog (mgr.14182) 892 : cluster [DBG] pgmap v537: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:37.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:36 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:41:34.923607+0000 mgr.smithi073.msdoog (mgr.14182) 892 : cluster [DBG] pgmap v537: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:37.420 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:41:38.421 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:41:39.061 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:38 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:41:36.924463+0000 mgr.smithi073.msdoog (mgr.14182) 893 : cluster [DBG] pgmap v538: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:39.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:38 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:41:37.021169+0000 mgr.smithi073.msdoog (mgr.14182) 894 : audit [DBG] from='client.15848 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:39.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:38 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:41:36.924463+0000 mgr.smithi073.msdoog (mgr.14182) 893 : cluster [DBG] pgmap v538: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:39.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:38 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:41:37.021169+0000 mgr.smithi073.msdoog (mgr.14182) 894 : audit [DBG] from='client.15848 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:39.796 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:41:39.796 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:41:40.177 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:41:41.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:40 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:41:38.925187+0000 mgr.smithi073.msdoog (mgr.14182) 895 : cluster [DBG] pgmap v539: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:41.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:40 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:41:39.794819+0000 mgr.smithi073.msdoog (mgr.14182) 896 : audit [DBG] from='client.15852 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:41.177 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:41:41.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:40 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:41:38.925187+0000 mgr.smithi073.msdoog (mgr.14182) 895 : cluster [DBG] pgmap v539: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:41.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:40 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:41:39.794819+0000 mgr.smithi073.msdoog (mgr.14182) 896 : audit [DBG] from='client.15852 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:42.522 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:41:42.522 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:41:42.812 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:42 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:41:40.925998+0000 mgr.smithi073.msdoog (mgr.14182) 897 : cluster [DBG] pgmap v540: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:42.893 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:41:43.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:42 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:41:40.925998+0000 mgr.smithi073.msdoog (mgr.14182) 897 : cluster [DBG] pgmap v540: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:43.894 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:41:44.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:43 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:41:42.518933+0000 mgr.smithi073.msdoog (mgr.14182) 898 : audit [DBG] from='client.15856 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:44.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:43 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:41:42.518933+0000 mgr.smithi073.msdoog (mgr.14182) 898 : audit [DBG] from='client.15856 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:44.855 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:41:42.926696+0000 mgr.smithi073.msdoog (mgr.14182) 899 : cluster [DBG] pgmap v541: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:41:45.221 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:41:45.221 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:41:45.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:44 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:41:42.926696+0000 mgr.smithi073.msdoog (mgr.14182) 899 : cluster [DBG] pgmap v541: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:41:45.594 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:41:46.595 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:41:46.929 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:41:44.927459+0000 mgr.smithi073.msdoog (mgr.14182) 900 : cluster [DBG] pgmap v542: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:46.929 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:41:45.219823+0000 mgr.smithi073.msdoog (mgr.14182) 901 : audit [DBG] from='client.15860 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:47.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:41:44.927459+0000 mgr.smithi073.msdoog (mgr.14182) 900 : cluster [DBG] pgmap v542: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:47.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:41:45.219823+0000 mgr.smithi073.msdoog (mgr.14182) 901 : audit [DBG] from='client.15860 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:47.935 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:41:47.935 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:41:48.359 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:41:49.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:48 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:41:46.928089+0000 mgr.smithi073.msdoog (mgr.14182) 902 : cluster [DBG] pgmap v543: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:49.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:48 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:41:46.928089+0000 mgr.smithi073.msdoog (mgr.14182) 902 : cluster [DBG] pgmap v543: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:49.359 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:41:50.029 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:49 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:41:47.934100+0000 mgr.smithi073.msdoog (mgr.14182) 903 : audit [DBG] from='client.15864 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:50.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:49 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:41:47.934100+0000 mgr.smithi073.msdoog (mgr.14182) 903 : audit [DBG] from='client.15864 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:50.703 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:41:50.703 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:41:51.023 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:41:48.928645+0000 mgr.smithi073.msdoog (mgr.14182) 904 : cluster [DBG] pgmap v544: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:51.084 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:41:51.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:41:48.928645+0000 mgr.smithi073.msdoog (mgr.14182) 904 : cluster [DBG] pgmap v544: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:52.085 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:41:52.118 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:51 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:41:50.701374+0000 mgr.smithi073.msdoog (mgr.14182) 905 : audit [DBG] from='client.15868 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:52.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:51 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:41:50.701374+0000 mgr.smithi073.msdoog (mgr.14182) 905 : audit [DBG] from='client.15868 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:53.047 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:52 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:41:50.929470+0000 mgr.smithi073.msdoog (mgr.14182) 906 : cluster [DBG] pgmap v545: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:53.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:52 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:41:50.929470+0000 mgr.smithi073.msdoog (mgr.14182) 906 : cluster [DBG] pgmap v545: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:53.400 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:41:53.400 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:41:53.792 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:41:54.792 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:41:55.119 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:54 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:41:52.930177+0000 mgr.smithi073.msdoog (mgr.14182) 907 : cluster [DBG] pgmap v546: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:41:55.119 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:54 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:41:53.399024+0000 mgr.smithi073.msdoog (mgr.14182) 908 : audit [DBG] from='client.15872 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:55.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:54 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:41:52.930177+0000 mgr.smithi073.msdoog (mgr.14182) 907 : cluster [DBG] pgmap v546: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:41:55.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:54 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:41:53.399024+0000 mgr.smithi073.msdoog (mgr.14182) 908 : audit [DBG] from='client.15872 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:56.074 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:41:56.074 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:41:56.466 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:41:57.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:56 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:41:54.930804+0000 mgr.smithi073.msdoog (mgr.14182) 909 : cluster [DBG] pgmap v547: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:57.312 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:56 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:41:54.930804+0000 mgr.smithi073.msdoog (mgr.14182) 909 : cluster [DBG] pgmap v547: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:57.467 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:41:58.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:57 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:41:56.072366+0000 mgr.smithi073.msdoog (mgr.14182) 910 : audit [DBG] from='client.15876 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:58.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:57 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:41:56.072366+0000 mgr.smithi073.msdoog (mgr.14182) 910 : audit [DBG] from='client.15876 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:41:58.808 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:41:58.808 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:41:59.097 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:58 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:41:56.931500+0000 mgr.smithi073.msdoog (mgr.14182) 911 : cluster [DBG] pgmap v548: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:41:59.174 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:41:59.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:58 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:41:56.931500+0000 mgr.smithi073.msdoog (mgr.14182) 911 : cluster [DBG] pgmap v548: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:00.175 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:42:00.210 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:41:59 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:41:58.807272+0000 mgr.smithi073.msdoog (mgr.14182) 912 : audit [DBG] from='client.15880 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:00.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:41:59 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:41:58.807272+0000 mgr.smithi073.msdoog (mgr.14182) 912 : audit [DBG] from='client.15880 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:01.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:00 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:41:58.932028+0000 mgr.smithi073.msdoog (mgr.14182) 913 : cluster [DBG] pgmap v549: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:01.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:00 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:41:58.932028+0000 mgr.smithi073.msdoog (mgr.14182) 913 : cluster [DBG] pgmap v549: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:01.500 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:42:01.501 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:42:01.883 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:42:02.884 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:42:03.226 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:02 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:42:00.932577+0000 mgr.smithi073.msdoog (mgr.14182) 914 : cluster [DBG] pgmap v550: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:03.226 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:02 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:42:01.499591+0000 mgr.smithi073.msdoog (mgr.14182) 915 : audit [DBG] from='client.15884 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:03.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:02 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:42:00.932577+0000 mgr.smithi073.msdoog (mgr.14182) 914 : cluster [DBG] pgmap v550: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:03.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:02 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:42:01.499591+0000 mgr.smithi073.msdoog (mgr.14182) 915 : audit [DBG] from='client.15884 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:04.205 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:42:04.205 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:42:04.583 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:42:05.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:04 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:42:02.933417+0000 mgr.smithi073.msdoog (mgr.14182) 916 : cluster [DBG] pgmap v551: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:42:05.312 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:04 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:42:02.933417+0000 mgr.smithi073.msdoog (mgr.14182) 916 : cluster [DBG] pgmap v551: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:42:05.584 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:42:06.235 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:05 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:42:04.203374+0000 mgr.smithi073.msdoog (mgr.14182) 917 : audit [DBG] from='client.15888 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:06.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:05 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:42:04.203374+0000 mgr.smithi073.msdoog (mgr.14182) 917 : audit [DBG] from='client.15888 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:06.918 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:42:06.918 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:42:07.230 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:06 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:42:04.933975+0000 mgr.smithi073.msdoog (mgr.14182) 918 : cluster [DBG] pgmap v552: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:07.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:06 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:42:04.933975+0000 mgr.smithi073.msdoog (mgr.14182) 918 : cluster [DBG] pgmap v552: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:07.297 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:42:08.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:07 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:42:06.916965+0000 mgr.smithi073.msdoog (mgr.14182) 919 : audit [DBG] from='client.15892 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:08.298 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:42:08.312 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:07 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:42:06.916965+0000 mgr.smithi073.msdoog (mgr.14182) 919 : audit [DBG] from='client.15892 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:08.926 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:08 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:42:06.934660+0000 mgr.smithi073.msdoog (mgr.14182) 920 : cluster [DBG] pgmap v553: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:09.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:08 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:42:06.934660+0000 mgr.smithi073.msdoog (mgr.14182) 920 : cluster [DBG] pgmap v553: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:09.608 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:42:09.608 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:42:09.973 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:42:10.973 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:42:11.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:10 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:42:08.935424+0000 mgr.smithi073.msdoog (mgr.14182) 921 : cluster [DBG] pgmap v554: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:11.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:10 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:42:09.606202+0000 mgr.smithi073.msdoog (mgr.14182) 922 : audit [DBG] from='client.15896 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:11.290 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:10 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:42:08.935424+0000 mgr.smithi073.msdoog (mgr.14182) 921 : cluster [DBG] pgmap v554: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:11.290 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:10 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:42:09.606202+0000 mgr.smithi073.msdoog (mgr.14182) 922 : audit [DBG] from='client.15896 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:12.287 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:42:12.288 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:42:12.675 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:42:13.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:12 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:42:10.936051+0000 mgr.smithi073.msdoog (mgr.14182) 923 : cluster [DBG] pgmap v555: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:13.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:12 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:42:10.936051+0000 mgr.smithi073.msdoog (mgr.14182) 923 : cluster [DBG] pgmap v555: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:13.676 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:42:14.048 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:13 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:42:12.286444+0000 mgr.smithi073.msdoog (mgr.14182) 924 : audit [DBG] from='client.15900 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:14.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:13 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:42:12.286444+0000 mgr.smithi073.msdoog (mgr.14182) 924 : audit [DBG] from='client.15900 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:15.025 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:42:15.026 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:42:15.052 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:14 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:42:12.936694+0000 mgr.smithi073.msdoog (mgr.14182) 925 : cluster [DBG] pgmap v556: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:42:15.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:14 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:42:12.936694+0000 mgr.smithi073.msdoog (mgr.14182) 925 : cluster [DBG] pgmap v556: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:42:15.405 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:42:16.406 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:42:17.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:42:14.937380+0000 mgr.smithi073.msdoog (mgr.14182) 926 : cluster [DBG] pgmap v557: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:17.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:42:15.024182+0000 mgr.smithi073.msdoog (mgr.14182) 927 : audit [DBG] from='client.15904 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:17.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:42:14.937380+0000 mgr.smithi073.msdoog (mgr.14182) 926 : cluster [DBG] pgmap v557: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:17.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:42:15.024182+0000 mgr.smithi073.msdoog (mgr.14182) 927 : audit [DBG] from='client.15904 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:17.769 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:42:17.770 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:42:18.146 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:42:19.148 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:42:19.182 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:18 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:42:16.938125+0000 mgr.smithi073.msdoog (mgr.14182) 928 : cluster [DBG] pgmap v558: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:19.183 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:18 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:42:17.768631+0000 mgr.smithi073.msdoog (mgr.14182) 929 : audit [DBG] from='client.15908 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:19.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:18 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:42:16.938125+0000 mgr.smithi073.msdoog (mgr.14182) 928 : cluster [DBG] pgmap v558: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:19.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:18 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:42:17.768631+0000 mgr.smithi073.msdoog (mgr.14182) 929 : audit [DBG] from='client.15908 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:20.454 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:42:20.454 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:42:20.846 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:42:21.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:42:18.938789+0000 mgr.smithi073.msdoog (mgr.14182) 930 : cluster [DBG] pgmap v559: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:21.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:42:18.938789+0000 mgr.smithi073.msdoog (mgr.14182) 930 : cluster [DBG] pgmap v559: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:21.847 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:42:22.174 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:21 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:42:20.452851+0000 mgr.smithi073.msdoog (mgr.14182) 931 : audit [DBG] from='client.15912 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:22.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:21 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:42:20.452851+0000 mgr.smithi073.msdoog (mgr.14182) 931 : audit [DBG] from='client.15912 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:23.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:22 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:42:20.939574+0000 mgr.smithi073.msdoog (mgr.14182) 932 : cluster [DBG] pgmap v560: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:23.147 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:42:23.147 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:42:23.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:22 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:42:20.939574+0000 mgr.smithi073.msdoog (mgr.14182) 932 : cluster [DBG] pgmap v560: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:23.467 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:42:24.468 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:42:25.141 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:42:22.940298+0000 mgr.smithi073.msdoog (mgr.14182) 933 : cluster [DBG] pgmap v561: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:42:25.141 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:42:23.145997+0000 mgr.smithi073.msdoog (mgr.14182) 934 : audit [DBG] from='client.15916 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:25.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:42:22.940298+0000 mgr.smithi073.msdoog (mgr.14182) 933 : cluster [DBG] pgmap v561: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:42:25.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:42:23.145997+0000 mgr.smithi073.msdoog (mgr.14182) 934 : audit [DBG] from='client.15916 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:25.822 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:42:25.822 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:42:26.212 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:42:27.213 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:42:27.244 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:26 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:42:24.940822+0000 mgr.smithi073.msdoog (mgr.14182) 935 : cluster [DBG] pgmap v562: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:27.244 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:26 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:42:25.821018+0000 mgr.smithi073.msdoog (mgr.14182) 936 : audit [DBG] from='client.15920 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:27.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:26 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:42:24.940822+0000 mgr.smithi073.msdoog (mgr.14182) 935 : cluster [DBG] pgmap v562: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:27.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:26 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:42:25.821018+0000 mgr.smithi073.msdoog (mgr.14182) 936 : audit [DBG] from='client.15920 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:28.553 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:42:28.553 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:42:28.921 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:42:29.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:42:26.941482+0000 mgr.smithi073.msdoog (mgr.14182) 937 : cluster [DBG] pgmap v563: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:29.312 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:42:26.941482+0000 mgr.smithi073.msdoog (mgr.14182) 937 : cluster [DBG] pgmap v563: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:29.922 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:42:30.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:42:28.550938+0000 mgr.smithi073.msdoog (mgr.14182) 938 : audit [DBG] from='client.15924 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:30.263 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:29 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:42:28.550938+0000 mgr.smithi073.msdoog (mgr.14182) 938 : audit [DBG] from='client.15924 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:31.242 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:42:31.261 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:42:31.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:30 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:42:28.942242+0000 mgr.smithi073.msdoog (mgr.14182) 939 : cluster [DBG] pgmap v564: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:31.266 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:30 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:42:28.942242+0000 mgr.smithi073.msdoog (mgr.14182) 939 : cluster [DBG] pgmap v564: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:31.628 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:42:32.630 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:42:33.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:32 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:42:30.942802+0000 mgr.smithi073.msdoog (mgr.14182) 940 : cluster [DBG] pgmap v565: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:33.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:32 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:42:31.240475+0000 mgr.smithi073.msdoog (mgr.14182) 941 : audit [DBG] from='client.15928 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:33.264 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:32 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:42:30.942802+0000 mgr.smithi073.msdoog (mgr.14182) 940 : cluster [DBG] pgmap v565: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:33.264 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:32 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:42:31.240475+0000 mgr.smithi073.msdoog (mgr.14182) 941 : audit [DBG] from='client.15928 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:33.969 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:42:33.969 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:42:34.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:33 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:42:32.943591+0000 mgr.smithi073.msdoog (mgr.14182) 942 : cluster [DBG] pgmap v566: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:42:34.275 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:33 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:42:32.943591+0000 mgr.smithi073.msdoog (mgr.14182) 942 : cluster [DBG] pgmap v566: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:42:34.344 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:42:35.345 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:42:35.981 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:35 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:42:33.967685+0000 mgr.smithi073.msdoog (mgr.14182) 943 : audit [DBG] from='client.15932 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:36.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:35 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:42:33.967685+0000 mgr.smithi073.msdoog (mgr.14182) 943 : audit [DBG] from='client.15932 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:36.754 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:42:36.755 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:42:37.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:36 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:42:34.944202+0000 mgr.smithi073.msdoog (mgr.14182) 944 : cluster [DBG] pgmap v567: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:37.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:36 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:42:34.944202+0000 mgr.smithi073.msdoog (mgr.14182) 944 : cluster [DBG] pgmap v567: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:37.135 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:42:38.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:37 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:42:36.753282+0000 mgr.smithi073.msdoog (mgr.14182) 945 : audit [DBG] from='client.15936 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:38.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:37 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:42:36.753282+0000 mgr.smithi073.msdoog (mgr.14182) 945 : audit [DBG] from='client.15936 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:38.136 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:42:38.797 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:38 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:42:36.944898+0000 mgr.smithi073.msdoog (mgr.14182) 946 : cluster [DBG] pgmap v568: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:39.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:38 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:42:36.944898+0000 mgr.smithi073.msdoog (mgr.14182) 946 : cluster [DBG] pgmap v568: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:39.543 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:42:39.543 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:42:39.918 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:42:40.919 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:42:40.954 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:40 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:42:38.945443+0000 mgr.smithi073.msdoog (mgr.14182) 947 : cluster [DBG] pgmap v569: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:40.954 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:40 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:42:39.541331+0000 mgr.smithi073.msdoog (mgr.14182) 948 : audit [DBG] from='client.15940 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:41.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:40 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:42:38.945443+0000 mgr.smithi073.msdoog (mgr.14182) 947 : cluster [DBG] pgmap v569: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:41.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:40 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:42:39.541331+0000 mgr.smithi073.msdoog (mgr.14182) 948 : audit [DBG] from='client.15940 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:42.255 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:42:42.255 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:42:42.618 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:42:42.812 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:42 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:42:40.946224+0000 mgr.smithi073.msdoog (mgr.14182) 949 : cluster [DBG] pgmap v570: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:43.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:42 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:42:40.946224+0000 mgr.smithi073.msdoog (mgr.14182) 949 : cluster [DBG] pgmap v570: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:43.620 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:42:43.961 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:43 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:42:42.253132+0000 mgr.smithi073.msdoog (mgr.14182) 950 : audit [DBG] from='client.15944 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:44.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:43 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:42:42.253132+0000 mgr.smithi073.msdoog (mgr.14182) 950 : audit [DBG] from='client.15944 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:45.008 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:42:45.008 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:42:45.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:44 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:42:42.947160+0000 mgr.smithi073.msdoog (mgr.14182) 951 : cluster [DBG] pgmap v571: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:42:45.034 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:42:42.947160+0000 mgr.smithi073.msdoog (mgr.14182) 951 : cluster [DBG] pgmap v571: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:42:45.384 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:42:46.385 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:42:47.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:42:44.947701+0000 mgr.smithi073.msdoog (mgr.14182) 952 : cluster [DBG] pgmap v572: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:47.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:46 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:42:45.006390+0000 mgr.smithi073.msdoog (mgr.14182) 953 : audit [DBG] from='client.15948 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:47.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:42:44.947701+0000 mgr.smithi073.msdoog (mgr.14182) 952 : cluster [DBG] pgmap v572: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:47.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:46 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:42:45.006390+0000 mgr.smithi073.msdoog (mgr.14182) 953 : audit [DBG] from='client.15948 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:47.759 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:42:47.759 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:42:48.134 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:42:49.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:48 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:42:46.948371+0000 mgr.smithi073.msdoog (mgr.14182) 954 : cluster [DBG] pgmap v573: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:49.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:48 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:42:47.757213+0000 mgr.smithi073.msdoog (mgr.14182) 955 : audit [DBG] from='client.15952 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:49.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:48 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:42:46.948371+0000 mgr.smithi073.msdoog (mgr.14182) 954 : cluster [DBG] pgmap v573: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:49.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:48 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:42:47.757213+0000 mgr.smithi073.msdoog (mgr.14182) 955 : audit [DBG] from='client.15952 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:49.135 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:42:50.425 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:42:50.426 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:42:50.801 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:42:51.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:42:48.949174+0000 mgr.smithi073.msdoog (mgr.14182) 956 : cluster [DBG] pgmap v574: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:51.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:42:48.949174+0000 mgr.smithi073.msdoog (mgr.14182) 956 : cluster [DBG] pgmap v574: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:51.802 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:42:51.980 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:51 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:42:50.423787+0000 mgr.smithi073.msdoog (mgr.14182) 957 : audit [DBG] from='client.15956 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:52.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:51 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:42:50.423787+0000 mgr.smithi073.msdoog (mgr.14182) 957 : audit [DBG] from='client.15956 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:53.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:52 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:42:50.950041+0000 mgr.smithi073.msdoog (mgr.14182) 958 : cluster [DBG] pgmap v575: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:53.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:52 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:42:50.950041+0000 mgr.smithi073.msdoog (mgr.14182) 958 : cluster [DBG] pgmap v575: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:42:53.132 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:42:53.133 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:35:19.500335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.xyxgnw on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-xyxgnw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.xyxgnw\nDeploy daemon haproxy.nfs.foo.smithi186.xyxgnw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:33:26Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:04Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:34:41Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.609822Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.jqksqs on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-jqksqs\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.jqksqs\nDeploy daemon haproxy.nfs.foo.smithi073.jqksqs ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:35:56Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:36:34Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:37:12Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:37:49.610979Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.telvtq on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:42:53.516 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:42:54.518 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:42:54.812 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:54 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:42:52.950656+0000 mgr.smithi073.msdoog (mgr.14182) 959 : cluster [DBG] pgmap v576: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:42:54.813 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:54 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:42:53.130706+0000 mgr.smithi073.msdoog (mgr.14182) 960 : audit [DBG] from='client.15960 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:54.813 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:54 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:42:53.976318+0000 mon.smithi073 (mon.0) 710 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi073.hqsgfi"}]: dispatch 2024-01-27T23:42:55.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:54 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:42:52.950656+0000 mgr.smithi073.msdoog (mgr.14182) 959 : cluster [DBG] pgmap v576: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:42:55.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:54 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:42:53.130706+0000 mgr.smithi073.msdoog (mgr.14182) 960 : audit [DBG] from='client.15960 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:55.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:54 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:42:53.976318+0000 mon.smithi073 (mon.0) 710 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi073.hqsgfi"}]: dispatch 2024-01-27T23:42:55.879 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:42:55.879 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:42:56.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:42:53.975845+0000 mgr.smithi073.msdoog (mgr.14182) 961 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi 2024-01-27T23:42:56.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi 2024-01-27T23:42:56.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi 2024-01-27T23:42:56.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi 2024-01-27T23:42:56.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Deploy daemon haproxy.nfs.foo.smithi073.hqsgfi ... 2024-01-27T23:42:56.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:42:56.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2024-01-27T23:42:56.014 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:41:01Z" level=warning msg="Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:42:56.014 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:41:39Z" level=warning msg="Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:42:56.014 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:42:16Z" level=warning msg="Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:42:56.014 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2024-01-27T23:42:56.014 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:42:56.014 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Traceback (most recent call last): 2024-01-27T23:42:56.014 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:42:56.014 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: yield (conn, connr) 2024-01-27T23:42:56.014 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:42:56.014 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: code, '\n'.join(err))) 2024-01-27T23:42:56.014 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi 2024-01-27T23:42:56.014 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi 2024-01-27T23:42:56.014 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi 2024-01-27T23:42:56.014 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi 2024-01-27T23:42:56.015 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Deploy daemon haproxy.nfs.foo.smithi073.hqsgfi ... 2024-01-27T23:42:56.015 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:42:56.015 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2024-01-27T23:42:56.015 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:41:01Z" level=warning msg="Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:42:56.015 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:41:39Z" level=warning msg="Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:42:56.015 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:42:16Z" level=warning msg="Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:42:56.015 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2024-01-27T23:42:56.015 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:42:56.015 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:42:53.975997+0000 mgr.smithi073.msdoog (mgr.14182) 962 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi073.hqsgfi 2024-01-27T23:42:56.015 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:42:53.976864+0000 mgr.smithi073.msdoog (mgr.14182) 963 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi 2024-01-27T23:42:56.015 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi 2024-01-27T23:42:56.015 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi 2024-01-27T23:42:56.015 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi 2024-01-27T23:42:56.016 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Deploy daemon haproxy.nfs.foo.smithi073.hqsgfi ... 2024-01-27T23:42:56.016 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:42:56.016 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2024-01-27T23:42:56.016 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:41:01Z" level=warning msg="Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:42:56.016 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:41:39Z" level=warning msg="Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:42:56.016 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:42:16Z" level=warning msg="Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:42:56.016 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2024-01-27T23:42:56.016 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:42:56.016 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:42:53.978019+0000 mgr.smithi073.msdoog (mgr.14182) 964 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:42:56.016 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:42:53.978965+0000 mgr.smithi073.msdoog (mgr.14182) 965 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:42:56.016 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:42:53.979774+0000 mgr.smithi073.msdoog (mgr.14182) 966 : cluster [DBG] pgmap v577: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 92 B/s rd, 0 op/s 2024-01-27T23:42:56.016 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:42:54.733310+0000 mon.smithi073 (mon.0) 711 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:42:56.016 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:42:55.402317+0000 mon.smithi073 (mon.0) 712 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:42:56.020 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:42:53.975845+0000 mgr.smithi073.msdoog (mgr.14182) 961 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi 2024-01-27T23:42:56.020 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi 2024-01-27T23:42:56.020 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi 2024-01-27T23:42:56.020 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi 2024-01-27T23:42:56.020 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Deploy daemon haproxy.nfs.foo.smithi073.hqsgfi ... 2024-01-27T23:42:56.020 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:42:56.020 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2024-01-27T23:42:56.020 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:41:01Z" level=warning msg="Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:42:56.020 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:41:39Z" level=warning msg="Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:42:56.021 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:42:16Z" level=warning msg="Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:42:56.021 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2024-01-27T23:42:56.021 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:42:56.021 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Traceback (most recent call last): 2024-01-27T23:42:56.021 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:42:56.021 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: yield (conn, connr) 2024-01-27T23:42:56.021 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:42:56.021 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: code, '\n'.join(err))) 2024-01-27T23:42:56.021 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi 2024-01-27T23:42:56.021 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi 2024-01-27T23:42:56.021 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi 2024-01-27T23:42:56.021 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi 2024-01-27T23:42:56.021 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Deploy daemon haproxy.nfs.foo.smithi073.hqsgfi ... 2024-01-27T23:42:56.022 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:42:56.022 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2024-01-27T23:42:56.022 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:41:01Z" level=warning msg="Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:42:56.022 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:41:39Z" level=warning msg="Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:42:56.022 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:42:16Z" level=warning msg="Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:42:56.022 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2024-01-27T23:42:56.022 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:42:56.022 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:42:53.975997+0000 mgr.smithi073.msdoog (mgr.14182) 962 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi073.hqsgfi 2024-01-27T23:42:56.022 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:42:53.976864+0000 mgr.smithi073.msdoog (mgr.14182) 963 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi 2024-01-27T23:42:56.022 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi 2024-01-27T23:42:56.022 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi 2024-01-27T23:42:56.022 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi 2024-01-27T23:42:56.022 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Deploy daemon haproxy.nfs.foo.smithi073.hqsgfi ... 2024-01-27T23:42:56.023 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:42:56.023 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2024-01-27T23:42:56.023 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:41:01Z" level=warning msg="Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:42:56.023 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:41:39Z" level=warning msg="Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:42:56.023 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:42:16Z" level=warning msg="Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:42:56.023 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2024-01-27T23:42:56.023 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:42:56.023 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:42:53.978019+0000 mgr.smithi073.msdoog (mgr.14182) 964 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:42:56.023 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:42:53.978965+0000 mgr.smithi073.msdoog (mgr.14182) 965 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-01-27T23:42:56.023 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:42:53.979774+0000 mgr.smithi073.msdoog (mgr.14182) 966 : cluster [DBG] pgmap v577: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 92 B/s rd, 0 op/s 2024-01-27T23:42:56.023 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:42:54.733310+0000 mon.smithi073 (mon.0) 711 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-01-27T23:42:56.023 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:42:55.402317+0000 mon.smithi073 (mon.0) 712 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:42:56.241 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:42:57.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:56 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:42:55.877435+0000 mgr.smithi073.msdoog (mgr.14182) 967 : audit [DBG] from='client.15964 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:57.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:56 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:42:55.877435+0000 mgr.smithi073.msdoog (mgr.14182) 967 : audit [DBG] from='client.15964 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:42:57.241 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:42:57.935 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:57 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:42:55.980487+0000 mgr.smithi073.msdoog (mgr.14182) 968 : cluster [DBG] pgmap v578: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 92 B/s rd, 0 op/s 2024-01-27T23:42:58.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:57 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:42:55.980487+0000 mgr.smithi073.msdoog (mgr.14182) 968 : cluster [DBG] pgmap v578: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 92 B/s rd, 0 op/s 2024-01-27T23:42:58.618 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:42:58.619 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:42:58.967 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:42:59.968 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:43:00.004 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:59 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:42:57.981276+0000 mgr.smithi073.msdoog (mgr.14182) 969 : cluster [DBG] pgmap v579: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 92 B/s rd, 0 op/s 2024-01-27T23:43:00.004 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:42:59 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:42:58.616501+0000 mgr.smithi073.msdoog (mgr.14182) 970 : audit [DBG] from='client.15968 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:00.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:59 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:42:57.981276+0000 mgr.smithi073.msdoog (mgr.14182) 969 : cluster [DBG] pgmap v579: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 92 B/s rd, 0 op/s 2024-01-27T23:43:00.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:42:59 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:42:58.616501+0000 mgr.smithi073.msdoog (mgr.14182) 970 : audit [DBG] from='client.15968 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:01.336 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:43:01.336 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:43:01.715 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:43:02.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:01 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:42:59.982081+0000 mgr.smithi073.msdoog (mgr.14182) 971 : cluster [DBG] pgmap v580: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 92 B/s rd, 0 op/s 2024-01-27T23:43:02.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:01 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:42:59.982081+0000 mgr.smithi073.msdoog (mgr.14182) 971 : cluster [DBG] pgmap v580: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 92 B/s rd, 0 op/s 2024-01-27T23:43:02.716 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:43:03.042 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:02 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:43:01.334827+0000 mgr.smithi073.msdoog (mgr.14182) 972 : audit [DBG] from='client.15972 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:03.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:02 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:43:01.334827+0000 mgr.smithi073.msdoog (mgr.14182) 972 : audit [DBG] from='client.15972 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:04.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:03 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:43:01.983103+0000 mgr.smithi073.msdoog (mgr.14182) 973 : cluster [DBG] pgmap v581: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 185 B/s rd, 0 op/s 2024-01-27T23:43:04.108 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:43:04.108 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:43:04.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:03 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:43:01.983103+0000 mgr.smithi073.msdoog (mgr.14182) 973 : cluster [DBG] pgmap v581: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 185 B/s rd, 0 op/s 2024-01-27T23:43:04.507 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:43:05.508 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:43:06.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:05 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:43:03.983802+0000 mgr.smithi073.msdoog (mgr.14182) 974 : cluster [DBG] pgmap v582: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 92 B/s rd, 0 op/s 2024-01-27T23:43:06.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:05 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:43:04.106607+0000 mgr.smithi073.msdoog (mgr.14182) 975 : audit [DBG] from='client.15976 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:06.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:05 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:43:03.983802+0000 mgr.smithi073.msdoog (mgr.14182) 974 : cluster [DBG] pgmap v582: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 92 B/s rd, 0 op/s 2024-01-27T23:43:06.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:05 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:43:04.106607+0000 mgr.smithi073.msdoog (mgr.14182) 975 : audit [DBG] from='client.15976 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:06.825 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:43:06.826 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:43:07.224 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:43:08.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:07 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:43:05.984369+0000 mgr.smithi073.msdoog (mgr.14182) 976 : cluster [DBG] pgmap v583: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:08.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:07 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:43:06.824138+0000 mgr.smithi073.msdoog (mgr.14182) 977 : audit [DBG] from='client.15980 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:08.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:07 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:43:07.139085+0000 mon.smithi073 (mon.0) 713 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:43:08.225 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:43:08.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:07 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:43:05.984369+0000 mgr.smithi073.msdoog (mgr.14182) 976 : cluster [DBG] pgmap v583: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:08.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:07 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:43:06.824138+0000 mgr.smithi073.msdoog (mgr.14182) 977 : audit [DBG] from='client.15980 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:08.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:07 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:43:07.139085+0000 mon.smithi073 (mon.0) 713 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:43:09.597 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:43:09.597 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:43:09.896 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:09 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:43:07.985238+0000 mgr.smithi073.msdoog (mgr.14182) 978 : cluster [DBG] pgmap v584: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:09.981 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:43:10.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:09 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:43:07.985238+0000 mgr.smithi073.msdoog (mgr.14182) 978 : cluster [DBG] pgmap v584: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:10.982 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:43:11.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:10 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:43:09.595584+0000 mgr.smithi073.msdoog (mgr.14182) 979 : audit [DBG] from='client.15984 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:11.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:10 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:43:09.595584+0000 mgr.smithi073.msdoog (mgr.14182) 979 : audit [DBG] from='client.15984 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:11.934 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:11 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:43:09.985930+0000 mgr.smithi073.msdoog (mgr.14182) 980 : cluster [DBG] pgmap v585: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:12.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:11 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:43:09.985930+0000 mgr.smithi073.msdoog (mgr.14182) 980 : cluster [DBG] pgmap v585: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:12.296 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:43:12.296 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:43:12.663 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:43:13.664 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:43:13.990 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:13 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:43:11.986680+0000 mgr.smithi073.msdoog (mgr.14182) 981 : cluster [DBG] pgmap v586: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:43:13.990 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:13 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:43:12.295052+0000 mgr.smithi073.msdoog (mgr.14182) 982 : audit [DBG] from='client.15988 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:14.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:13 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:43:11.986680+0000 mgr.smithi073.msdoog (mgr.14182) 981 : cluster [DBG] pgmap v586: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:43:14.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:13 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:43:12.295052+0000 mgr.smithi073.msdoog (mgr.14182) 982 : audit [DBG] from='client.15988 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:14.990 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:43:14.990 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:43:15.364 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:43:16.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:15 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:43:13.987557+0000 mgr.smithi073.msdoog (mgr.14182) 983 : cluster [DBG] pgmap v587: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:16.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:15 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:43:13.987557+0000 mgr.smithi073.msdoog (mgr.14182) 983 : cluster [DBG] pgmap v587: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:16.364 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:43:16.974 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:43:14.987264+0000 mgr.smithi073.msdoog (mgr.14182) 984 : audit [DBG] from='client.15992 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:17.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:43:14.987264+0000 mgr.smithi073.msdoog (mgr.14182) 984 : audit [DBG] from='client.15992 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:17.654 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:43:17.654 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:43:17.969 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:17 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:43:15.988373+0000 mgr.smithi073.msdoog (mgr.14182) 985 : cluster [DBG] pgmap v588: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:18.038 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:43:18.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:17 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:43:15.988373+0000 mgr.smithi073.msdoog (mgr.14182) 985 : cluster [DBG] pgmap v588: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:19.040 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:43:19.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:18 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:43:17.651815+0000 mgr.smithi073.msdoog (mgr.14182) 986 : audit [DBG] from='client.15996 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:19.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:18 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:43:17.651815+0000 mgr.smithi073.msdoog (mgr.14182) 986 : audit [DBG] from='client.15996 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:20.033 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:19 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:43:17.989508+0000 mgr.smithi073.msdoog (mgr.14182) 987 : cluster [DBG] pgmap v589: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:20.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:19 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:43:17.989508+0000 mgr.smithi073.msdoog (mgr.14182) 987 : cluster [DBG] pgmap v589: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:20.395 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:43:20.395 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:43:20.771 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:43:21.772 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:43:22.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:21 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:43:19.990279+0000 mgr.smithi073.msdoog (mgr.14182) 988 : cluster [DBG] pgmap v590: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:22.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:21 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:43:20.393699+0000 mgr.smithi073.msdoog (mgr.14182) 989 : audit [DBG] from='client.16000 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:22.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:21 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:43:19.990279+0000 mgr.smithi073.msdoog (mgr.14182) 988 : cluster [DBG] pgmap v590: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:22.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:21 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:43:20.393699+0000 mgr.smithi073.msdoog (mgr.14182) 989 : audit [DBG] from='client.16000 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:23.081 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:43:23.081 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:43:23.444 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:43:24.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:23 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:43:21.991186+0000 mgr.smithi073.msdoog (mgr.14182) 990 : cluster [DBG] pgmap v591: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:43:24.312 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:23 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:43:21.991186+0000 mgr.smithi073.msdoog (mgr.14182) 990 : cluster [DBG] pgmap v591: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:43:24.445 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:43:25.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:43:23.078993+0000 mgr.smithi073.msdoog (mgr.14182) 991 : audit [DBG] from='client.16004 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:25.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:43:23.078993+0000 mgr.smithi073.msdoog (mgr.14182) 991 : audit [DBG] from='client.16004 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:25.746 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:43:25.746 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:43:26.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:25 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:43:23.991867+0000 mgr.smithi073.msdoog (mgr.14182) 992 : cluster [DBG] pgmap v592: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:26.145 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:43:26.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:25 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:43:23.991867+0000 mgr.smithi073.msdoog (mgr.14182) 992 : cluster [DBG] pgmap v592: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:27.146 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:43:27.177 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:26 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:43:25.744851+0000 mgr.smithi073.msdoog (mgr.14182) 993 : audit [DBG] from='client.16008 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:27.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:26 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:43:25.744851+0000 mgr.smithi073.msdoog (mgr.14182) 993 : audit [DBG] from='client.16008 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:28.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:27 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:43:25.992462+0000 mgr.smithi073.msdoog (mgr.14182) 994 : cluster [DBG] pgmap v593: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:28.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:27 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:43:25.992462+0000 mgr.smithi073.msdoog (mgr.14182) 994 : cluster [DBG] pgmap v593: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:28.436 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:43:28.436 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:43:28.820 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:43:29.821 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:43:30.161 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:29 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:43:27.993243+0000 mgr.smithi073.msdoog (mgr.14182) 995 : cluster [DBG] pgmap v594: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:30.162 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:29 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:43:28.434278+0000 mgr.smithi073.msdoog (mgr.14182) 996 : audit [DBG] from='client.16012 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:30.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:43:27.993243+0000 mgr.smithi073.msdoog (mgr.14182) 995 : cluster [DBG] pgmap v594: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:30.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:43:28.434278+0000 mgr.smithi073.msdoog (mgr.14182) 996 : audit [DBG] from='client.16012 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:31.154 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:43:31.154 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:43:31.518 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:43:32.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:31 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:43:29.993997+0000 mgr.smithi073.msdoog (mgr.14182) 997 : cluster [DBG] pgmap v595: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:32.312 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:31 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:43:29.993997+0000 mgr.smithi073.msdoog (mgr.14182) 997 : cluster [DBG] pgmap v595: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:32.519 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:43:33.189 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:32 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:43:31.151420+0000 mgr.smithi073.msdoog (mgr.14182) 998 : audit [DBG] from='client.16016 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:33.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:32 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:43:31.151420+0000 mgr.smithi073.msdoog (mgr.14182) 998 : audit [DBG] from='client.16016 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:33.898 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:43:33.898 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:43:34.200 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:33 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:43:31.995026+0000 mgr.smithi073.msdoog (mgr.14182) 999 : cluster [DBG] pgmap v596: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:43:34.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:33 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:43:31.995026+0000 mgr.smithi073.msdoog (mgr.14182) 999 : cluster [DBG] pgmap v596: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:43:34.278 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:43:35.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:34 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:43:33.896586+0000 mgr.smithi073.msdoog (mgr.14182) 1000 : audit [DBG] from='client.16020 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:35.279 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:43:35.312 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:34 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:43:33.896586+0000 mgr.smithi073.msdoog (mgr.14182) 1000 : audit [DBG] from='client.16020 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:35.963 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:35 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:43:33.995977+0000 mgr.smithi073.msdoog (mgr.14182) 1001 : cluster [DBG] pgmap v597: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:36.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:35 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:43:33.995977+0000 mgr.smithi073.msdoog (mgr.14182) 1001 : cluster [DBG] pgmap v597: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:36.639 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:43:36.639 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:43:37.019 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:43:38.020 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:43:38.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:37 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:43:35.996557+0000 mgr.smithi073.msdoog (mgr.14182) 1002 : cluster [DBG] pgmap v598: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:38.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:37 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:43:36.637771+0000 mgr.smithi073.msdoog (mgr.14182) 1003 : audit [DBG] from='client.16024 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:38.312 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:37 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:43:35.996557+0000 mgr.smithi073.msdoog (mgr.14182) 1002 : cluster [DBG] pgmap v598: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:38.312 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:37 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:43:36.637771+0000 mgr.smithi073.msdoog (mgr.14182) 1003 : audit [DBG] from='client.16024 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:39.318 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:43:39.318 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:43:39.684 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:43:40.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:39 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:43:37.997619+0000 mgr.smithi073.msdoog (mgr.14182) 1004 : cluster [DBG] pgmap v599: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:40.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:39 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:43:37.997619+0000 mgr.smithi073.msdoog (mgr.14182) 1004 : cluster [DBG] pgmap v599: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:40.685 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:43:41.036 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:40 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:43:39.316560+0000 mgr.smithi073.msdoog (mgr.14182) 1005 : audit [DBG] from='client.16028 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:41.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:40 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:43:39.316560+0000 mgr.smithi073.msdoog (mgr.14182) 1005 : audit [DBG] from='client.16028 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:42.054 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:43:42.054 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:43:42.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:41 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:43:39.998438+0000 mgr.smithi073.msdoog (mgr.14182) 1006 : cluster [DBG] pgmap v600: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:42.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:41 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:43:39.998438+0000 mgr.smithi073.msdoog (mgr.14182) 1006 : cluster [DBG] pgmap v600: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:42.409 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:43:43.410 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:43:44.037 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:43 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:43:41.999308+0000 mgr.smithi073.msdoog (mgr.14182) 1007 : cluster [DBG] pgmap v601: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:43:44.037 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:43 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:43:42.052151+0000 mgr.smithi073.msdoog (mgr.14182) 1008 : audit [DBG] from='client.16032 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:44.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:43 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:43:41.999308+0000 mgr.smithi073.msdoog (mgr.14182) 1007 : cluster [DBG] pgmap v601: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:43:44.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:43 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:43:42.052151+0000 mgr.smithi073.msdoog (mgr.14182) 1008 : audit [DBG] from='client.16032 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:44.737 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:43:44.737 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:43:45.126 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:43:46.127 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:43:46.155 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:45 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:43:44.000020+0000 mgr.smithi073.msdoog (mgr.14182) 1009 : cluster [DBG] pgmap v602: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:46.155 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:45 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:43:44.734970+0000 mgr.smithi073.msdoog (mgr.14182) 1010 : audit [DBG] from='client.16036 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:46.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:45 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:43:44.000020+0000 mgr.smithi073.msdoog (mgr.14182) 1009 : cluster [DBG] pgmap v602: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:46.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:45 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:43:44.734970+0000 mgr.smithi073.msdoog (mgr.14182) 1010 : audit [DBG] from='client.16036 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:47.546 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:43:47.547 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:43:47.917 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:43:48.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:47 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:43:46.000600+0000 mgr.smithi073.msdoog (mgr.14182) 1011 : cluster [DBG] pgmap v603: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:48.312 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:47 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:43:46.000600+0000 mgr.smithi073.msdoog (mgr.14182) 1011 : cluster [DBG] pgmap v603: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:48.918 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:43:49.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:48 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:43:47.544700+0000 mgr.smithi073.msdoog (mgr.14182) 1012 : audit [DBG] from='client.16040 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:49.269 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:48 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:43:47.544700+0000 mgr.smithi073.msdoog (mgr.14182) 1012 : audit [DBG] from='client.16040 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:50.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:49 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:43:48.001569+0000 mgr.smithi073.msdoog (mgr.14182) 1013 : cluster [DBG] pgmap v604: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:50.307 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:43:50.307 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:43:50.312 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:49 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:43:48.001569+0000 mgr.smithi073.msdoog (mgr.14182) 1013 : cluster [DBG] pgmap v604: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:50.699 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:43:51.701 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:43:52.044 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:51 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:43:50.002281+0000 mgr.smithi073.msdoog (mgr.14182) 1014 : cluster [DBG] pgmap v605: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:52.044 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:51 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:43:50.305625+0000 mgr.smithi073.msdoog (mgr.14182) 1015 : audit [DBG] from='client.16044 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:52.264 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:51 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:43:50.002281+0000 mgr.smithi073.msdoog (mgr.14182) 1014 : cluster [DBG] pgmap v605: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:52.264 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:51 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:43:50.305625+0000 mgr.smithi073.msdoog (mgr.14182) 1015 : audit [DBG] from='client.16044 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:53.032 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:43:53.032 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:51.246274Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:51.246411Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:51.246481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:51.246543Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:51.246603Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:51.246855Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:43:53.416 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:43:54.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:53 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:43:52.003198+0000 mgr.smithi073.msdoog (mgr.14182) 1016 : cluster [DBG] pgmap v606: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:43:54.312 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:53 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:43:52.003198+0000 mgr.smithi073.msdoog (mgr.14182) 1016 : cluster [DBG] pgmap v606: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:43:54.417 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:43:55.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:54 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:43:53.030602+0000 mgr.smithi073.msdoog (mgr.14182) 1017 : audit [DBG] from='client.16048 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:55.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:54 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:43:53.981247+0000 mon.smithi073 (mon.0) 714 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:43:55.313 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:54 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:43:53.030602+0000 mgr.smithi073.msdoog (mgr.14182) 1017 : audit [DBG] from='client.16048 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:55.313 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:54 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:43:53.981247+0000 mon.smithi073 (mon.0) 714 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-27T23:43:56.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:43:54.003921+0000 mgr.smithi073.msdoog (mgr.14182) 1018 : cluster [DBG] pgmap v607: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:56.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:43:55.279173+0000 mon.smithi073 (mon.0) 715 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:43:56.092 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:43:56.093 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:37:54.382866Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:37:54.382932Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:37:54.382994Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:37:54.382793Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:37:54.382643Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:37:54.383476Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:37:54.383069Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:37:54.383186Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:37:54.383127Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:37:54.383418Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:43:56.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:43:54.003921+0000 mgr.smithi073.msdoog (mgr.14182) 1018 : cluster [DBG] pgmap v607: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:56.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:43:55.279173+0000 mon.smithi073 (mon.0) 715 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:43:56.585 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:43:57.586 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:43:58.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:57 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:43:56.004629+0000 mgr.smithi073.msdoog (mgr.14182) 1019 : cluster [DBG] pgmap v608: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:58.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:57 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:43:56.091058+0000 mgr.smithi073.msdoog (mgr.14182) 1020 : audit [DBG] from='client.16052 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:58.265 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:57 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:43:56.004629+0000 mgr.smithi073.msdoog (mgr.14182) 1019 : cluster [DBG] pgmap v608: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:43:58.265 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:57 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:43:56.091058+0000 mgr.smithi073.msdoog (mgr.14182) 1020 : audit [DBG] from='client.16052 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:43:59.115 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:43:59.115 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:43:59.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:58 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:43:57.936917+0000 mon.smithi073 (mon.0) 716 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:43:59.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:58 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:43:58.248468+0000 mon.smithi073 (mon.0) 717 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:43:59.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:58 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:43:58.249110+0000 mon.smithi073 (mon.0) 718 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:43:59.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:58 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:43:58.253560+0000 mon.smithi073 (mon.0) 719 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:43:59.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:58 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:43:58.257309+0000 mon.smithi073 (mon.0) 720 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:43:59.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:58 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:43:58.264185+0000 mon.smithi073 (mon.0) 721 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:43:59.277 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:58 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:43:57.936917+0000 mon.smithi073 (mon.0) 716 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:43:59.277 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:58 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:43:58.248468+0000 mon.smithi073 (mon.0) 717 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-27T23:43:59.277 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:58 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:43:58.249110+0000 mon.smithi073 (mon.0) 718 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-27T23:43:59.277 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:58 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:43:58.253560+0000 mon.smithi073 (mon.0) 719 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:43:59.277 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:58 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:43:58.257309+0000 mon.smithi073 (mon.0) 720 : audit [DBG] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-27T23:43:59.277 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:58 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:43:58.264185+0000 mon.smithi073 (mon.0) 721 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:43:59.498 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:44:00.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:59 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:43:58.005403+0000 mgr.smithi073.msdoog (mgr.14182) 1021 : cluster [DBG] pgmap v609: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:44:00.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:59 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:43:58.254046+0000 mgr.smithi073.msdoog (mgr.14182) 1022 : cluster [DBG] pgmap v610: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:44:00.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:59 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:43:58.266140+0000 mgr.smithi073.msdoog (mgr.14182) 1023 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi186.ocwatu on smithi186 2024-01-27T23:44:00.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:59 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:43:58.935092+0000 mon.smithi073 (mon.0) 722 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:44:00.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:59 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:43:58.935121+0000 mon.smithi073 (mon.0) 723 : cluster [INF] Cluster is now healthy 2024-01-27T23:44:00.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:43:59 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:43:59.113796+0000 mgr.smithi073.msdoog (mgr.14182) 1024 : audit [DBG] from='client.16056 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:00.312 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:59 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:43:58.005403+0000 mgr.smithi073.msdoog (mgr.14182) 1021 : cluster [DBG] pgmap v609: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:44:00.313 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:59 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:43:58.254046+0000 mgr.smithi073.msdoog (mgr.14182) 1022 : cluster [DBG] pgmap v610: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:44:00.313 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:59 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:43:58.266140+0000 mgr.smithi073.msdoog (mgr.14182) 1023 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi186.ocwatu on smithi186 2024-01-27T23:44:00.313 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:59 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:43:58.935092+0000 mon.smithi073 (mon.0) 722 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-01-27T23:44:00.313 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:59 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:43:58.935121+0000 mon.smithi073 (mon.0) 723 : cluster [INF] Cluster is now healthy 2024-01-27T23:44:00.313 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:43:59 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:43:59.113796+0000 mgr.smithi073.msdoog (mgr.14182) 1024 : audit [DBG] from='client.16056 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:00.499 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:44:01.168 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:00 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:44:00.254958+0000 mgr.smithi073.msdoog (mgr.14182) 1025 : cluster [DBG] pgmap v611: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:44:01.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:00 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:44:00.254958+0000 mgr.smithi073.msdoog (mgr.14182) 1025 : cluster [DBG] pgmap v611: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:44:01.896 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:44:01.896 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:44:02.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:01 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:44:01.894356+0000 mgr.smithi073.msdoog (mgr.14182) 1026 : audit [DBG] from='client.16060 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:02.272 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:01 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:44:01.894356+0000 mgr.smithi073.msdoog (mgr.14182) 1026 : audit [DBG] from='client.16060 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:02.292 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:44:03.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:02 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:44:02.255779+0000 mgr.smithi073.msdoog (mgr.14182) 1027 : cluster [DBG] pgmap v612: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:44:03.293 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:44:03.312 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:02 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:44:02.255779+0000 mgr.smithi073.msdoog (mgr.14182) 1027 : cluster [DBG] pgmap v612: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:44:04.677 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:44:04.677 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:44:05.064 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:44:06.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:05 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:44:04.256610+0000 mgr.smithi073.msdoog (mgr.14182) 1028 : cluster [DBG] pgmap v613: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:44:06.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:05 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:44:04.675043+0000 mgr.smithi073.msdoog (mgr.14182) 1029 : audit [DBG] from='client.16064 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:06.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:05 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:44:04.256610+0000 mgr.smithi073.msdoog (mgr.14182) 1028 : cluster [DBG] pgmap v613: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:44:06.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:05 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:44:04.675043+0000 mgr.smithi073.msdoog (mgr.14182) 1029 : audit [DBG] from='client.16064 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:06.065 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:44:07.434 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:44:07.435 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:44:07.805 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:44:08.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:07 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:44:06.257129+0000 mgr.smithi073.msdoog (mgr.14182) 1030 : cluster [DBG] pgmap v614: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:44:08.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:07 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:44:07.142617+0000 mon.smithi073 (mon.0) 724 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:44:08.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:07 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:44:06.257129+0000 mgr.smithi073.msdoog (mgr.14182) 1030 : cluster [DBG] pgmap v614: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:44:08.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:07 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:44:07.142617+0000 mon.smithi073 (mon.0) 724 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' 2024-01-27T23:44:08.806 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:44:09.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:08 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:44:07.432603+0000 mgr.smithi073.msdoog (mgr.14182) 1031 : audit [DBG] from='client.16068 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:09.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:08 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:44:07.432603+0000 mgr.smithi073.msdoog (mgr.14182) 1031 : audit [DBG] from='client.16068 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:10.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:09 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:44:08.257833+0000 mgr.smithi073.msdoog (mgr.14182) 1032 : cluster [DBG] pgmap v615: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:44:10.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:09 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:44:08.257833+0000 mgr.smithi073.msdoog (mgr.14182) 1032 : cluster [DBG] pgmap v615: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-01-27T23:44:10.173 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:44:10.173 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:44:10.547 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:44:11.548 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:44:11.881 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:11 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:44:10.171108+0000 mgr.smithi073.msdoog (mgr.14182) 1033 : audit [DBG] from='client.16072 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:11.881 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:11 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:44:10.258349+0000 mgr.smithi073.msdoog (mgr.14182) 1034 : cluster [DBG] pgmap v616: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:44:11.980 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:11 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:44:10.171108+0000 mgr.smithi073.msdoog (mgr.14182) 1033 : audit [DBG] from='client.16072 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:11.980 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:11 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:44:10.258349+0000 mgr.smithi073.msdoog (mgr.14182) 1034 : cluster [DBG] pgmap v616: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:44:13.089 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:44:13.090 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:44:13.497 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:44:14.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:13 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:44:12.259175+0000 mgr.smithi073.msdoog (mgr.14182) 1035 : cluster [DBG] pgmap v617: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:44:14.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:13 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:44:12.259175+0000 mgr.smithi073.msdoog (mgr.14182) 1035 : cluster [DBG] pgmap v617: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:44:14.498 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:44:14.813 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:14 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:44:13.087349+0000 mgr.smithi073.msdoog (mgr.14182) 1036 : audit [DBG] from='client.16076 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:15.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:14 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:44:13.087349+0000 mgr.smithi073.msdoog (mgr.14182) 1036 : audit [DBG] from='client.16076 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:15.865 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:44:15.866 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:44:16.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:15 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:44:14.259838+0000 mgr.smithi073.msdoog (mgr.14182) 1037 : cluster [DBG] pgmap v618: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:44:16.024 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:15 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:44:14.259838+0000 mgr.smithi073.msdoog (mgr.14182) 1037 : cluster [DBG] pgmap v618: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:44:16.246 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:44:17.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:44:15.863913+0000 mgr.smithi073.msdoog (mgr.14182) 1038 : audit [DBG] from='client.16080 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:17.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:44:15.863913+0000 mgr.smithi073.msdoog (mgr.14182) 1038 : audit [DBG] from='client.16080 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:17.247 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:44:17.874 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:17 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:44:16.260517+0000 mgr.smithi073.msdoog (mgr.14182) 1039 : cluster [DBG] pgmap v619: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:44:18.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:17 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:44:16.260517+0000 mgr.smithi073.msdoog (mgr.14182) 1039 : cluster [DBG] pgmap v619: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:44:18.588 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:44:18.588 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:44:18.970 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:44:19.970 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:44:20.004 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:19 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:44:18.261113+0000 mgr.smithi073.msdoog (mgr.14182) 1040 : cluster [DBG] pgmap v620: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:44:20.004 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:19 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:44:18.586062+0000 mgr.smithi073.msdoog (mgr.14182) 1041 : audit [DBG] from='client.16084 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:20.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:19 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:44:18.261113+0000 mgr.smithi073.msdoog (mgr.14182) 1040 : cluster [DBG] pgmap v620: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:44:20.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:19 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:44:18.586062+0000 mgr.smithi073.msdoog (mgr.14182) 1041 : audit [DBG] from='client.16084 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:21.331 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:44:21.331 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:44:21.711 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:44:22.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:21 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:44:20.261859+0000 mgr.smithi073.msdoog (mgr.14182) 1042 : cluster [DBG] pgmap v621: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:44:22.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:21 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:44:20.261859+0000 mgr.smithi073.msdoog (mgr.14182) 1042 : cluster [DBG] pgmap v621: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:44:22.712 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:44:23.012 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:22 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:44:21.328683+0000 mgr.smithi073.msdoog (mgr.14182) 1043 : audit [DBG] from='client.16088 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:23.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:22 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:44:21.328683+0000 mgr.smithi073.msdoog (mgr.14182) 1043 : audit [DBG] from='client.16088 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:24.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:23 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:44:22.262564+0000 mgr.smithi073.msdoog (mgr.14182) 1044 : cluster [DBG] pgmap v622: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:44:24.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:23 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:44:22.262564+0000 mgr.smithi073.msdoog (mgr.14182) 1044 : cluster [DBG] pgmap v622: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:44:24.145 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:44:24.145 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:44:24.519 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:44:25.520 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:44:26.014 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:25 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:44:24.143135+0000 mgr.smithi073.msdoog (mgr.14182) 1045 : audit [DBG] from='client.16092 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:26.015 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:25 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:44:24.263178+0000 mgr.smithi073.msdoog (mgr.14182) 1046 : cluster [DBG] pgmap v623: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:44:26.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:25 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:44:24.143135+0000 mgr.smithi073.msdoog (mgr.14182) 1045 : audit [DBG] from='client.16092 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:26.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:25 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:44:24.263178+0000 mgr.smithi073.msdoog (mgr.14182) 1046 : cluster [DBG] pgmap v623: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:44:26.924 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:44:26.924 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:44:27.302 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:44:28.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:27 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:44:26.263669+0000 mgr.smithi073.msdoog (mgr.14182) 1047 : cluster [DBG] pgmap v624: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:44:28.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:27 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:44:26.922274+0000 mgr.smithi073.msdoog (mgr.14182) 1048 : audit [DBG] from='client.16096 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:28.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:27 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:44:26.263669+0000 mgr.smithi073.msdoog (mgr.14182) 1047 : cluster [DBG] pgmap v624: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:44:28.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:27 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:44:26.922274+0000 mgr.smithi073.msdoog (mgr.14182) 1048 : audit [DBG] from='client.16096 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:28.302 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:44:29.761 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:44:29.761 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:44:30.059 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:29 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:44:28.264559+0000 mgr.smithi073.msdoog (mgr.14182) 1049 : cluster [DBG] pgmap v625: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:44:30.152 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:44:30.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:44:28.264559+0000 mgr.smithi073.msdoog (mgr.14182) 1049 : cluster [DBG] pgmap v625: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:44:31.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:30 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:44:29.758550+0000 mgr.smithi073.msdoog (mgr.14182) 1050 : audit [DBG] from='client.16100 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:31.153 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:44:31.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:30 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:44:29.758550+0000 mgr.smithi073.msdoog (mgr.14182) 1050 : audit [DBG] from='client.16100 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:32.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:31 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:44:30.265331+0000 mgr.smithi073.msdoog (mgr.14182) 1051 : cluster [DBG] pgmap v626: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:44:32.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:31 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:44:30.265331+0000 mgr.smithi073.msdoog (mgr.14182) 1051 : cluster [DBG] pgmap v626: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:44:32.545 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:44:32.545 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:44:32.935 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:44:33.936 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:44:34.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:33 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:44:32.266272+0000 mgr.smithi073.msdoog (mgr.14182) 1052 : cluster [DBG] pgmap v627: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:44:34.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:33 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:44:32.543166+0000 mgr.smithi073.msdoog (mgr.14182) 1053 : audit [DBG] from='client.16104 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:34.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:33 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:44:32.266272+0000 mgr.smithi073.msdoog (mgr.14182) 1052 : cluster [DBG] pgmap v627: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:44:34.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:33 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:44:32.543166+0000 mgr.smithi073.msdoog (mgr.14182) 1053 : audit [DBG] from='client.16104 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:35.299 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:44:35.299 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:44:35.677 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:44:36.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:35 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:44:34.266906+0000 mgr.smithi073.msdoog (mgr.14182) 1054 : cluster [DBG] pgmap v628: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:44:36.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:35 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:44:34.266906+0000 mgr.smithi073.msdoog (mgr.14182) 1054 : cluster [DBG] pgmap v628: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:44:36.678 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:44:37.012 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:36 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:44:35.297582+0000 mgr.smithi073.msdoog (mgr.14182) 1055 : audit [DBG] from='client.16108 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:37.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:36 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:44:35.297582+0000 mgr.smithi073.msdoog (mgr.14182) 1055 : audit [DBG] from='client.16108 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:38.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:37 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:44:36.267360+0000 mgr.smithi073.msdoog (mgr.14182) 1056 : cluster [DBG] pgmap v629: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:44:38.067 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:44:38.067 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:44:38.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:37 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:44:36.267360+0000 mgr.smithi073.msdoog (mgr.14182) 1056 : cluster [DBG] pgmap v629: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:44:38.451 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:44:39.452 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:44:40.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:39 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:44:38.065045+0000 mgr.smithi073.msdoog (mgr.14182) 1057 : audit [DBG] from='client.16112 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:40.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:39 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:44:38.268020+0000 mgr.smithi073.msdoog (mgr.14182) 1058 : cluster [DBG] pgmap v630: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:44:40.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:39 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:44:38.065045+0000 mgr.smithi073.msdoog (mgr.14182) 1057 : audit [DBG] from='client.16112 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:40.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:39 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:44:38.268020+0000 mgr.smithi073.msdoog (mgr.14182) 1058 : cluster [DBG] pgmap v630: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:44:40.893 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:44:40.893 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:44:41.325 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:44:42.062 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:41 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:44:40.268588+0000 mgr.smithi073.msdoog (mgr.14182) 1059 : cluster [DBG] pgmap v631: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:44:42.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:41 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:44:40.891109+0000 mgr.smithi073.msdoog (mgr.14182) 1060 : audit [DBG] from='client.16116 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:42.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:41 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:44:40.268588+0000 mgr.smithi073.msdoog (mgr.14182) 1059 : cluster [DBG] pgmap v631: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:44:42.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:41 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:44:40.891109+0000 mgr.smithi073.msdoog (mgr.14182) 1060 : audit [DBG] from='client.16116 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:42.327 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:44:43.670 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:44:43.671 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:44:44.015 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:43 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:44:42.269434+0000 mgr.smithi073.msdoog (mgr.14182) 1061 : cluster [DBG] pgmap v632: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:44:44.066 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:44:44.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:43 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:44:42.269434+0000 mgr.smithi073.msdoog (mgr.14182) 1061 : cluster [DBG] pgmap v632: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:44:45.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:44 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:44:43.668177+0000 mgr.smithi073.msdoog (mgr.14182) 1062 : audit [DBG] from='client.16120 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:45.067 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:44:45.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:44 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:44:43.668177+0000 mgr.smithi073.msdoog (mgr.14182) 1062 : audit [DBG] from='client.16120 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:46.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:45 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:44:44.270021+0000 mgr.smithi073.msdoog (mgr.14182) 1063 : cluster [DBG] pgmap v633: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:44:46.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:45 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:44:44.270021+0000 mgr.smithi073.msdoog (mgr.14182) 1063 : cluster [DBG] pgmap v633: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:44:46.420 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:44:46.420 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:44:46.791 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:44:47.792 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:44:48.118 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:47 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:44:46.270600+0000 mgr.smithi073.msdoog (mgr.14182) 1064 : cluster [DBG] pgmap v634: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:44:48.118 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:47 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:44:46.417780+0000 mgr.smithi073.msdoog (mgr.14182) 1065 : audit [DBG] from='client.16124 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:48.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:47 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:44:46.270600+0000 mgr.smithi073.msdoog (mgr.14182) 1064 : cluster [DBG] pgmap v634: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:44:48.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:47 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:44:46.417780+0000 mgr.smithi073.msdoog (mgr.14182) 1065 : audit [DBG] from='client.16124 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:49.159 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:44:49.159 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:44:49.550 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:44:50.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:49 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:44:48.271548+0000 mgr.smithi073.msdoog (mgr.14182) 1066 : cluster [DBG] pgmap v635: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:44:50.312 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:49 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:44:48.271548+0000 mgr.smithi073.msdoog (mgr.14182) 1066 : cluster [DBG] pgmap v635: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:44:50.551 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:44:50.919 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:50 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:44:49.157495+0000 mgr.smithi073.msdoog (mgr.14182) 1067 : audit [DBG] from='client.16128 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:51.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:50 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:44:49.157495+0000 mgr.smithi073.msdoog (mgr.14182) 1067 : audit [DBG] from='client.16128 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:51.901 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:44:51.901 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:44:52.197 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:51 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:44:50.272214+0000 mgr.smithi073.msdoog (mgr.14182) 1068 : cluster [DBG] pgmap v636: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:44:52.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:51 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:44:50.272214+0000 mgr.smithi073.msdoog (mgr.14182) 1068 : cluster [DBG] pgmap v636: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:44:52.290 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:44:53.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:52 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:44:51.898687+0000 mgr.smithi073.msdoog (mgr.14182) 1069 : audit [DBG] from='client.16132 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:53.291 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:44:53.312 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:52 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:44:51.898687+0000 mgr.smithi073.msdoog (mgr.14182) 1069 : audit [DBG] from='client.16132 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:54.002 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:53 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:44:52.272982+0000 mgr.smithi073.msdoog (mgr.14182) 1070 : cluster [DBG] pgmap v637: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:44:54.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:53 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:44:52.272982+0000 mgr.smithi073.msdoog (mgr.14182) 1070 : cluster [DBG] pgmap v637: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:44:54.729 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:44:54.729 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:44:55.132 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:44:56.132 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:44:56.165 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:44:54.273528+0000 mgr.smithi073.msdoog (mgr.14182) 1071 : cluster [DBG] pgmap v638: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:44:56.165 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:44:54.726391+0000 mgr.smithi073.msdoog (mgr.14182) 1072 : audit [DBG] from='client.16136 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:56.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:44:54.273528+0000 mgr.smithi073.msdoog (mgr.14182) 1071 : cluster [DBG] pgmap v638: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:44:56.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:44:54.726391+0000 mgr.smithi073.msdoog (mgr.14182) 1072 : audit [DBG] from='client.16136 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:57.569 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:44:57.569 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:44:57.938 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:57 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:44:56.274173+0000 mgr.smithi073.msdoog (mgr.14182) 1073 : cluster [DBG] pgmap v639: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:44:57.980 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:44:58.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:57 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:44:56.274173+0000 mgr.smithi073.msdoog (mgr.14182) 1073 : cluster [DBG] pgmap v639: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:44:58.981 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:44:59.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:58 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:44:57.566483+0000 mgr.smithi073.msdoog (mgr.14182) 1074 : audit [DBG] from='client.16140 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:59.313 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:58 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:44:57.566483+0000 mgr.smithi073.msdoog (mgr.14182) 1074 : audit [DBG] from='client.16140 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:44:59.961 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:44:59 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:44:58.275167+0000 mgr.smithi073.msdoog (mgr.14182) 1075 : cluster [DBG] pgmap v640: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:00.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:44:59 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:44:58.275167+0000 mgr.smithi073.msdoog (mgr.14182) 1075 : cluster [DBG] pgmap v640: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:00.333 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:45:00.333 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:45:00.722 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:45:01.723 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:45:02.049 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:01 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:45:00.275672+0000 mgr.smithi073.msdoog (mgr.14182) 1076 : cluster [DBG] pgmap v641: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:02.049 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:01 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:45:00.330888+0000 mgr.smithi073.msdoog (mgr.14182) 1077 : audit [DBG] from='client.16144 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:02.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:01 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:45:00.275672+0000 mgr.smithi073.msdoog (mgr.14182) 1076 : cluster [DBG] pgmap v641: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:02.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:01 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:45:00.330888+0000 mgr.smithi073.msdoog (mgr.14182) 1077 : audit [DBG] from='client.16144 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:03.047 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:45:03.047 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:45:03.439 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:45:04.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:03 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:45:02.276348+0000 mgr.smithi073.msdoog (mgr.14182) 1078 : cluster [DBG] pgmap v642: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:45:04.313 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:03 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:45:02.276348+0000 mgr.smithi073.msdoog (mgr.14182) 1078 : cluster [DBG] pgmap v642: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:45:04.440 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:45:05.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:04 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:45:03.044670+0000 mgr.smithi073.msdoog (mgr.14182) 1079 : audit [DBG] from='client.16148 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:05.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:04 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:45:03.044670+0000 mgr.smithi073.msdoog (mgr.14182) 1079 : audit [DBG] from='client.16148 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:05.756 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:45:05.756 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:45:06.028 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:05 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:45:04.276992+0000 mgr.smithi073.msdoog (mgr.14182) 1080 : cluster [DBG] pgmap v643: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:06.131 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:45:06.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:05 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:45:04.276992+0000 mgr.smithi073.msdoog (mgr.14182) 1080 : cluster [DBG] pgmap v643: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:07.132 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:45:07.168 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:06 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:45:05.754149+0000 mgr.smithi073.msdoog (mgr.14182) 1081 : audit [DBG] from='client.16152 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:07.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:06 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:45:05.754149+0000 mgr.smithi073.msdoog (mgr.14182) 1081 : audit [DBG] from='client.16152 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:08.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:07 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:45:06.277464+0000 mgr.smithi073.msdoog (mgr.14182) 1082 : cluster [DBG] pgmap v644: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:08.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:07 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:45:06.277464+0000 mgr.smithi073.msdoog (mgr.14182) 1082 : cluster [DBG] pgmap v644: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:08.490 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:45:08.490 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:45:08.879 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:45:09.880 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:45:10.224 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:09 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:45:08.278141+0000 mgr.smithi073.msdoog (mgr.14182) 1083 : cluster [DBG] pgmap v645: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:10.224 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:09 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:45:08.487840+0000 mgr.smithi073.msdoog (mgr.14182) 1084 : audit [DBG] from='client.16156 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:10.262 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:09 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:45:08.278141+0000 mgr.smithi073.msdoog (mgr.14182) 1083 : cluster [DBG] pgmap v645: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:10.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:09 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:45:08.487840+0000 mgr.smithi073.msdoog (mgr.14182) 1084 : audit [DBG] from='client.16156 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:11.222 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:45:11.222 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:45:11.596 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:45:12.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:11 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:45:10.278855+0000 mgr.smithi073.msdoog (mgr.14182) 1085 : cluster [DBG] pgmap v646: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:12.312 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:11 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:45:10.278855+0000 mgr.smithi073.msdoog (mgr.14182) 1085 : cluster [DBG] pgmap v646: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:12.597 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:45:13.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:12 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:45:11.219787+0000 mgr.smithi073.msdoog (mgr.14182) 1086 : audit [DBG] from='client.16160 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:13.313 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:12 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:45:11.219787+0000 mgr.smithi073.msdoog (mgr.14182) 1086 : audit [DBG] from='client.16160 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:14.009 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:45:14.009 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:45:14.029 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:13 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:45:12.279872+0000 mgr.smithi073.msdoog (mgr.14182) 1087 : cluster [DBG] pgmap v647: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:45:14.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:13 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:45:12.279872+0000 mgr.smithi073.msdoog (mgr.14182) 1087 : cluster [DBG] pgmap v647: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:45:14.556 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:45:15.557 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:45:16.240 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:15 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:45:14.005795+0000 mgr.smithi073.msdoog (mgr.14182) 1088 : audit [DBG] from='client.16164 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:16.241 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:15 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:45:14.280732+0000 mgr.smithi073.msdoog (mgr.14182) 1089 : cluster [DBG] pgmap v648: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:16.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:15 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:45:14.005795+0000 mgr.smithi073.msdoog (mgr.14182) 1088 : audit [DBG] from='client.16164 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:16.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:15 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:45:14.280732+0000 mgr.smithi073.msdoog (mgr.14182) 1089 : cluster [DBG] pgmap v648: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:16.988 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:45:16.988 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:45:17.370 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:45:18.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:17 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:45:16.281234+0000 mgr.smithi073.msdoog (mgr.14182) 1090 : cluster [DBG] pgmap v649: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:18.313 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:17 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:45:16.281234+0000 mgr.smithi073.msdoog (mgr.14182) 1090 : cluster [DBG] pgmap v649: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:18.370 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:45:19.057 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:18 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:45:16.985508+0000 mgr.smithi073.msdoog (mgr.14182) 1091 : audit [DBG] from='client.16168 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:19.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:18 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:45:16.985508+0000 mgr.smithi073.msdoog (mgr.14182) 1091 : audit [DBG] from='client.16168 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:19.822 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:45:19.822 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:45:20.143 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:19 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:45:18.282022+0000 mgr.smithi073.msdoog (mgr.14182) 1092 : cluster [DBG] pgmap v650: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:20.203 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:45:20.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:19 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:45:18.282022+0000 mgr.smithi073.msdoog (mgr.14182) 1092 : cluster [DBG] pgmap v650: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:21.204 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:45:21.238 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:20 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:45:19.820270+0000 mgr.smithi073.msdoog (mgr.14182) 1093 : audit [DBG] from='client.16172 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:21.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:20 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:45:19.820270+0000 mgr.smithi073.msdoog (mgr.14182) 1093 : audit [DBG] from='client.16172 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:22.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:21 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:45:20.282617+0000 mgr.smithi073.msdoog (mgr.14182) 1094 : cluster [DBG] pgmap v651: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:22.290 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:21 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:45:20.282617+0000 mgr.smithi073.msdoog (mgr.14182) 1094 : cluster [DBG] pgmap v651: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:22.655 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:45:22.655 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:45:23.044 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:45:24.045 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:45:24.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:23 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:45:22.283300+0000 mgr.smithi073.msdoog (mgr.14182) 1095 : cluster [DBG] pgmap v652: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:45:24.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:23 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:45:22.652660+0000 mgr.smithi073.msdoog (mgr.14182) 1096 : audit [DBG] from='client.16176 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:24.313 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:23 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:45:22.283300+0000 mgr.smithi073.msdoog (mgr.14182) 1095 : cluster [DBG] pgmap v652: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:45:24.313 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:23 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:45:22.652660+0000 mgr.smithi073.msdoog (mgr.14182) 1096 : audit [DBG] from='client.16176 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:25.413 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:45:25.414 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:45:25.794 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:45:26.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:25 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:45:24.283994+0000 mgr.smithi073.msdoog (mgr.14182) 1097 : cluster [DBG] pgmap v653: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:26.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:25 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:45:24.283994+0000 mgr.smithi073.msdoog (mgr.14182) 1097 : cluster [DBG] pgmap v653: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:26.795 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:45:27.147 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:26 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:45:25.411256+0000 mgr.smithi073.msdoog (mgr.14182) 1098 : audit [DBG] from='client.16180 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:27.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:26 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:45:25.411256+0000 mgr.smithi073.msdoog (mgr.14182) 1098 : audit [DBG] from='client.16180 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:28.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:27 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:45:26.284454+0000 mgr.smithi073.msdoog (mgr.14182) 1099 : cluster [DBG] pgmap v654: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:28.153 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:45:28.153 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:45:28.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:27 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:45:26.284454+0000 mgr.smithi073.msdoog (mgr.14182) 1099 : cluster [DBG] pgmap v654: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:28.553 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:45:29.554 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:45:30.196 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:29 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:45:28.150820+0000 mgr.smithi073.msdoog (mgr.14182) 1100 : audit [DBG] from='client.16184 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:30.197 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:29 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:45:28.285131+0000 mgr.smithi073.msdoog (mgr.14182) 1101 : cluster [DBG] pgmap v655: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:30.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:45:28.150820+0000 mgr.smithi073.msdoog (mgr.14182) 1100 : audit [DBG] from='client.16184 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:30.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:45:28.285131+0000 mgr.smithi073.msdoog (mgr.14182) 1101 : cluster [DBG] pgmap v655: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:30.884 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:45:30.884 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:45:31.268 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:45:32.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:31 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:45:30.285959+0000 mgr.smithi073.msdoog (mgr.14182) 1102 : cluster [DBG] pgmap v656: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:32.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:31 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:45:30.882090+0000 mgr.smithi073.msdoog (mgr.14182) 1103 : audit [DBG] from='client.16188 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:32.269 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:45:32.304 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:31 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:45:30.285959+0000 mgr.smithi073.msdoog (mgr.14182) 1102 : cluster [DBG] pgmap v656: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:32.305 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:31 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:45:30.882090+0000 mgr.smithi073.msdoog (mgr.14182) 1103 : audit [DBG] from='client.16188 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:33.669 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:45:33.670 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:45:34.052 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:45:34.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:33 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:45:32.286975+0000 mgr.smithi073.msdoog (mgr.14182) 1104 : cluster [DBG] pgmap v657: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:45:34.313 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:33 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:45:32.286975+0000 mgr.smithi073.msdoog (mgr.14182) 1104 : cluster [DBG] pgmap v657: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:45:35.054 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:45:35.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:34 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:45:33.667519+0000 mgr.smithi073.msdoog (mgr.14182) 1105 : audit [DBG] from='client.16192 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:35.313 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:34 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:45:33.667519+0000 mgr.smithi073.msdoog (mgr.14182) 1105 : audit [DBG] from='client.16192 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:36.048 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:35 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:45:34.287708+0000 mgr.smithi073.msdoog (mgr.14182) 1106 : cluster [DBG] pgmap v658: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:36.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:35 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:45:34.287708+0000 mgr.smithi073.msdoog (mgr.14182) 1106 : cluster [DBG] pgmap v658: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:36.403 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:45:36.403 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:45:36.775 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:45:37.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:36 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:45:36.288159+0000 mgr.smithi073.msdoog (mgr.14182) 1107 : cluster [DBG] pgmap v659: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:37.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:36 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:45:36.400730+0000 mgr.smithi073.msdoog (mgr.14182) 1108 : audit [DBG] from='client.16196 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:37.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:36 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:45:36.288159+0000 mgr.smithi073.msdoog (mgr.14182) 1107 : cluster [DBG] pgmap v659: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:37.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:36 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:45:36.400730+0000 mgr.smithi073.msdoog (mgr.14182) 1108 : audit [DBG] from='client.16196 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:37.777 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:45:39.160 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:45:39.161 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:45:39.532 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:39 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:45:38.289012+0000 mgr.smithi073.msdoog (mgr.14182) 1109 : cluster [DBG] pgmap v660: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:39.576 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:45:39.763 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:39 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:45:38.289012+0000 mgr.smithi073.msdoog (mgr.14182) 1109 : cluster [DBG] pgmap v660: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:40.577 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:45:40.918 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:40 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:45:39.157572+0000 mgr.smithi073.msdoog (mgr.14182) 1110 : audit [DBG] from='client.16200 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:41.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:40 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:45:39.157572+0000 mgr.smithi073.msdoog (mgr.14182) 1110 : audit [DBG] from='client.16200 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:41.976 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:45:41.976 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:45:42.002 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:41 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:45:40.289596+0000 mgr.smithi073.msdoog (mgr.14182) 1111 : cluster [DBG] pgmap v661: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:42.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:41 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:45:40.289596+0000 mgr.smithi073.msdoog (mgr.14182) 1111 : cluster [DBG] pgmap v661: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:42.367 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:45:43.369 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:45:44.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:43 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:45:41.974276+0000 mgr.smithi073.msdoog (mgr.14182) 1112 : audit [DBG] from='client.16204 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:44.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:43 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:45:42.290357+0000 mgr.smithi073.msdoog (mgr.14182) 1113 : cluster [DBG] pgmap v662: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:45:44.036 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:43 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:45:41.974276+0000 mgr.smithi073.msdoog (mgr.14182) 1112 : audit [DBG] from='client.16204 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:44.036 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:43 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:45:42.290357+0000 mgr.smithi073.msdoog (mgr.14182) 1113 : cluster [DBG] pgmap v662: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:45:44.721 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:45:44.721 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:45:45.108 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:45:46.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:45 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:45:44.290996+0000 mgr.smithi073.msdoog (mgr.14182) 1114 : cluster [DBG] pgmap v663: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:46.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:45 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:45:44.718322+0000 mgr.smithi073.msdoog (mgr.14182) 1115 : audit [DBG] from='client.16208 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:46.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:45 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:45:44.290996+0000 mgr.smithi073.msdoog (mgr.14182) 1114 : cluster [DBG] pgmap v663: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:46.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:45 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:45:44.718322+0000 mgr.smithi073.msdoog (mgr.14182) 1115 : audit [DBG] from='client.16208 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:46.108 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:45:47.496 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:45:47.496 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:45:47.813 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:47 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:45:46.291487+0000 mgr.smithi073.msdoog (mgr.14182) 1116 : cluster [DBG] pgmap v664: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:47.890 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:45:48.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:47 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:45:46.291487+0000 mgr.smithi073.msdoog (mgr.14182) 1116 : cluster [DBG] pgmap v664: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:48.892 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:45:49.013 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:48 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:45:47.493542+0000 mgr.smithi073.msdoog (mgr.14182) 1117 : audit [DBG] from='client.16212 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:49.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:48 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:45:47.493542+0000 mgr.smithi073.msdoog (mgr.14182) 1117 : audit [DBG] from='client.16212 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:49.902 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:49 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:45:48.292351+0000 mgr.smithi073.msdoog (mgr.14182) 1118 : cluster [DBG] pgmap v665: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:50.259 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:45:50.259 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:45:50.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:49 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:45:48.292351+0000 mgr.smithi073.msdoog (mgr.14182) 1118 : cluster [DBG] pgmap v665: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:50.657 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:45:51.659 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:45:51.983 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:51 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:45:50.257022+0000 mgr.smithi073.msdoog (mgr.14182) 1119 : audit [DBG] from='client.16216 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:51.983 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:51 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:45:50.292925+0000 mgr.smithi073.msdoog (mgr.14182) 1120 : cluster [DBG] pgmap v666: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:52.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:51 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:45:50.257022+0000 mgr.smithi073.msdoog (mgr.14182) 1119 : audit [DBG] from='client.16216 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:52.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:51 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:45:50.292925+0000 mgr.smithi073.msdoog (mgr.14182) 1120 : cluster [DBG] pgmap v666: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:52.996 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:45:52.996 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:45:53.374 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:45:54.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:53 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:45:52.293869+0000 mgr.smithi073.msdoog (mgr.14182) 1121 : cluster [DBG] pgmap v667: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:45:54.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:53 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:45:52.293869+0000 mgr.smithi073.msdoog (mgr.14182) 1121 : cluster [DBG] pgmap v667: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:45:54.375 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:45:55.018 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:54 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:45:52.993461+0000 mgr.smithi073.msdoog (mgr.14182) 1122 : audit [DBG] from='client.16220 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:55.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:54 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:45:52.993461+0000 mgr.smithi073.msdoog (mgr.14182) 1122 : audit [DBG] from='client.16220 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:55.723 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:45:55.723 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:45:56.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:55 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:45:54.294601+0000 mgr.smithi073.msdoog (mgr.14182) 1123 : cluster [DBG] pgmap v668: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:56.158 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:45:56.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:55 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:45:54.294601+0000 mgr.smithi073.msdoog (mgr.14182) 1123 : cluster [DBG] pgmap v668: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:57.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:56 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:45:55.720782+0000 mgr.smithi073.msdoog (mgr.14182) 1124 : audit [DBG] from='client.16224 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:57.158 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:45:57.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:56 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:45:55.720782+0000 mgr.smithi073.msdoog (mgr.14182) 1124 : audit [DBG] from='client.16224 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:45:58.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:57 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:45:56.295304+0000 mgr.smithi073.msdoog (mgr.14182) 1125 : cluster [DBG] pgmap v669: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:58.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:57 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:45:56.295304+0000 mgr.smithi073.msdoog (mgr.14182) 1125 : cluster [DBG] pgmap v669: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:45:58.531 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:45:58.531 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:45:58.922 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:45:59.923 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:46:00.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:59 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:45:58.295966+0000 mgr.smithi073.msdoog (mgr.14182) 1126 : cluster [DBG] pgmap v670: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:46:00.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:45:59 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:45:58.527306+0000 mgr.smithi073.msdoog (mgr.14182) 1127 : audit [DBG] from='client.16228 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:46:00.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:59 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:45:58.295966+0000 mgr.smithi073.msdoog (mgr.14182) 1126 : cluster [DBG] pgmap v670: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:46:00.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:45:59 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:45:58.527306+0000 mgr.smithi073.msdoog (mgr.14182) 1127 : audit [DBG] from='client.16228 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:46:01.271 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:46:01.271 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:46:01.655 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:46:02.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:01 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:46:00.296497+0000 mgr.smithi073.msdoog (mgr.14182) 1128 : cluster [DBG] pgmap v671: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:46:02.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:01 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:46:00.296497+0000 mgr.smithi073.msdoog (mgr.14182) 1128 : cluster [DBG] pgmap v671: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:46:02.657 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:46:02.991 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:02 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:46:01.268899+0000 mgr.smithi073.msdoog (mgr.14182) 1129 : audit [DBG] from='client.16232 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:46:03.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:02 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:46:01.268899+0000 mgr.smithi073.msdoog (mgr.14182) 1129 : audit [DBG] from='client.16232 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:46:04.005 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:46:04.005 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:46:04.029 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:03 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:46:02.297256+0000 mgr.smithi073.msdoog (mgr.14182) 1130 : cluster [DBG] pgmap v672: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 767 B/s rd, 0 op/s 2024-01-27T23:46:04.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:03 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:46:02.297256+0000 mgr.smithi073.msdoog (mgr.14182) 1130 : cluster [DBG] pgmap v672: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 767 B/s rd, 0 op/s 2024-01-27T23:46:04.388 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:46:05.389 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:46:06.050 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:05 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:46:04.002258+0000 mgr.smithi073.msdoog (mgr.14182) 1131 : audit [DBG] from='client.16236 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:46:06.050 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:05 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:46:04.297860+0000 mgr.smithi073.msdoog (mgr.14182) 1132 : cluster [DBG] pgmap v673: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 682 B/s rd, 0 op/s 2024-01-27T23:46:06.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:05 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:46:04.002258+0000 mgr.smithi073.msdoog (mgr.14182) 1131 : audit [DBG] from='client.16236 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:46:06.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:05 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:46:04.297860+0000 mgr.smithi073.msdoog (mgr.14182) 1132 : cluster [DBG] pgmap v673: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 682 B/s rd, 0 op/s 2024-01-27T23:46:06.737 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:46:06.737 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:46:07.147 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:46:08.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:07 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:46:06.298429+0000 mgr.smithi073.msdoog (mgr.14182) 1133 : cluster [DBG] pgmap v674: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 682 B/s rd, 0 op/s 2024-01-27T23:46:08.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:07 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:46:06.734527+0000 mgr.smithi073.msdoog (mgr.14182) 1134 : audit [DBG] from='client.16240 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:46:08.148 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:46:08.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:07 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:46:06.298429+0000 mgr.smithi073.msdoog (mgr.14182) 1133 : cluster [DBG] pgmap v674: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 682 B/s rd, 0 op/s 2024-01-27T23:46:08.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:07 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:46:06.734527+0000 mgr.smithi073.msdoog (mgr.14182) 1134 : audit [DBG] from='client.16240 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:46:09.577 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:46:09.578 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:46:09.936 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:09 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:46:08.299168+0000 mgr.smithi073.msdoog (mgr.14182) 1135 : cluster [DBG] pgmap v675: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 682 B/s rd, 0 op/s 2024-01-27T23:46:09.962 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:46:10.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:09 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:46:08.299168+0000 mgr.smithi073.msdoog (mgr.14182) 1135 : cluster [DBG] pgmap v675: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 682 B/s rd, 0 op/s 2024-01-27T23:46:10.964 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:46:11.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:10 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:46:09.575056+0000 mgr.smithi073.msdoog (mgr.14182) 1136 : audit [DBG] from='client.16244 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:46:11.313 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:10 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:46:09.575056+0000 mgr.smithi073.msdoog (mgr.14182) 1136 : audit [DBG] from='client.16244 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:46:12.015 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:11 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:46:10.300064+0000 mgr.smithi073.msdoog (mgr.14182) 1137 : cluster [DBG] pgmap v676: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 682 B/s rd, 0 op/s 2024-01-27T23:46:12.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:11 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:46:10.300064+0000 mgr.smithi073.msdoog (mgr.14182) 1137 : cluster [DBG] pgmap v676: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 682 B/s rd, 0 op/s 2024-01-27T23:46:12.371 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:46:12.371 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:46:12.786 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:46:13.787 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:46:14.116 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:13 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:46:12.300780+0000 mgr.smithi073.msdoog (mgr.14182) 1138 : cluster [DBG] pgmap v677: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 767 B/s rd, 0 op/s 2024-01-27T23:46:14.116 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:13 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:46:12.368895+0000 mgr.smithi073.msdoog (mgr.14182) 1139 : audit [DBG] from='client.16248 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:46:14.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:13 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:46:12.300780+0000 mgr.smithi073.msdoog (mgr.14182) 1138 : cluster [DBG] pgmap v677: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 767 B/s rd, 0 op/s 2024-01-27T23:46:14.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:13 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:46:12.368895+0000 mgr.smithi073.msdoog (mgr.14182) 1139 : audit [DBG] from='client.16248 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:46:15.104 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:46:15.104 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:46:15.487 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:46:16.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:15 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:46:14.301338+0000 mgr.smithi073.msdoog (mgr.14182) 1140 : cluster [DBG] pgmap v678: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:46:16.313 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:15 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:46:14.301338+0000 mgr.smithi073.msdoog (mgr.14182) 1140 : cluster [DBG] pgmap v678: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:46:16.488 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:46:17.148 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:16 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:46:15.101859+0000 mgr.smithi073.msdoog (mgr.14182) 1141 : audit [DBG] from='client.16252 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:46:17.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:16 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:46:15.101859+0000 mgr.smithi073.msdoog (mgr.14182) 1141 : audit [DBG] from='client.16252 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:46:17.812 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:46:17.812 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:46:18.109 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:17 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:46:16.302052+0000 mgr.smithi073.msdoog (mgr.14182) 1142 : cluster [DBG] pgmap v679: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:46:18.194 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:46:18.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:17 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:46:16.302052+0000 mgr.smithi073.msdoog (mgr.14182) 1142 : cluster [DBG] pgmap v679: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:46:19.195 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:46:19.228 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:18 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:46:17.809890+0000 mgr.smithi073.msdoog (mgr.14182) 1143 : audit [DBG] from='client.16256 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:46:19.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:18 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:46:17.809890+0000 mgr.smithi073.msdoog (mgr.14182) 1143 : audit [DBG] from='client.16256 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:46:20.190 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:19 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:46:18.302776+0000 mgr.smithi073.msdoog (mgr.14182) 1144 : cluster [DBG] pgmap v680: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:46:20.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:19 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:46:18.302776+0000 mgr.smithi073.msdoog (mgr.14182) 1144 : cluster [DBG] pgmap v680: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:46:20.533 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:46:20.533 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:46:21.037 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:46:22.038 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:46:22.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:21 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:46:20.303301+0000 mgr.smithi073.msdoog (mgr.14182) 1145 : cluster [DBG] pgmap v681: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:46:22.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:21 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:46:20.531000+0000 mgr.smithi073.msdoog (mgr.14182) 1146 : audit [DBG] from='client.16260 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:46:22.313 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:21 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:46:20.303301+0000 mgr.smithi073.msdoog (mgr.14182) 1145 : cluster [DBG] pgmap v681: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:46:22.313 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:21 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:46:20.531000+0000 mgr.smithi073.msdoog (mgr.14182) 1146 : audit [DBG] from='client.16260 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:46:23.396 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:46:23.397 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:46:23.777 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:46:24.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:23 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:46:22.304275+0000 mgr.smithi073.msdoog (mgr.14182) 1147 : cluster [DBG] pgmap v682: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:46:24.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:23 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:46:22.304275+0000 mgr.smithi073.msdoog (mgr.14182) 1147 : cluster [DBG] pgmap v682: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-01-27T23:46:24.778 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:46:25.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:24 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:46:23.393572+0000 mgr.smithi073.msdoog (mgr.14182) 1148 : audit [DBG] from='client.16264 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:46:25.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:24 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:46:23.393572+0000 mgr.smithi073.msdoog (mgr.14182) 1148 : audit [DBG] from='client.16264 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:46:26.063 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:25 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:46:24.304858+0000 mgr.smithi073.msdoog (mgr.14182) 1149 : cluster [DBG] pgmap v683: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:46:26.178 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:46:26.178 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:37:49.611951Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.hwjors on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:46:26.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:25 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:46:24.304858+0000 mgr.smithi073.msdoog (mgr.14182) 1149 : cluster [DBG] pgmap v683: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:46:26.570 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:46:27.570 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a72a5dace2353a54147d37bd2699a2a482507966 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 -- ceph orch ls -f json 2024-01-27T23:46:28.221 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:27 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:46:26.175202+0000 mgr.smithi073.msdoog (mgr.14182) 1150 : audit [DBG] from='client.16268 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:46:28.221 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:27 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:46:26.305383+0000 mgr.smithi073.msdoog (mgr.14182) 1151 : cluster [DBG] pgmap v684: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:46:28.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:27 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:46:26.175202+0000 mgr.smithi073.msdoog (mgr.14182) 1150 : audit [DBG] from='client.16268 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-27T23:46:28.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:27 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:46:26.305383+0000 mgr.smithi073.msdoog (mgr.14182) 1151 : cluster [DBG] pgmap v684: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:46:28.987 INFO:teuthology.orchestra.run.smithi073.stdout: 2024-01-27T23:46:28.988 INFO:teuthology.orchestra.run.smithi073.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-01-27T23:24:20.763557Z", "last_refresh": "2024-01-27T23:43:57.930295Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-01-27T23:24:17.207658Z", "last_refresh": "2024-01-27T23:43:55.273341Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-01-27T23:24:19.067077Z", "last_refresh": "2024-01-27T23:43:57.930418Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:40:24.626070Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.dyryxh on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-dyryxh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.dyryxh\nDeploy daemon haproxy.nfs.foo.smithi186.dyryxh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:38:31Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:09Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:39:47Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.976787Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi073.hqsgfi on smithi073: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi073-hqsgfi\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi073.hqsgfi\nDeploy daemon haproxy.nfs.foo.smithi073.hqsgfi ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:41:01Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:41:39Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:42:16Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi073 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-01-27T23:42:53.977954Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi073.odwzlp on smithi073: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:42:53.978901Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi186.jsgluq on smithi186: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-01-27T23:46:27.900157Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi186.ocwatu on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-ocwatu\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-ocwatu\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.ocwatu\n/bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.ocwatu\nDeploy daemon haproxy.nfs.foo.smithi186.ocwatu ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2024-01-27T23:44:35Z\" level=warning msg=\"Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:45:12Z\" level=warning msg=\"Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2024-01-27T23:45:50Z\" level=warning msg=\"Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.73/16"}, "status": {"created": "2024-01-27T23:27:39.390907Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.73/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-01-27T23:24:16.280513Z", "last_refresh": "2024-01-27T23:43:55.273481Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:15.614606Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi073:172.21.15.73=smithi073", "smithi186:172.21.15.186=smithi186"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-01-27T23:25:15.612234Z", "last_refresh": "2024-01-27T23:43:55.273551Z", "running": 2, "size": 2}}, {"events": ["2024-01-27T23:27:39.389683Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-01-27T23:27:39.385909Z", "last_refresh": "2024-01-27T23:43:57.930921Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-01-27T23:24:19.906570Z", "last_refresh": "2024-01-27T23:43:55.273614Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-01-27T23:25:45.295721Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-01-27T23:25:45.291716Z", "last_refresh": "2024-01-27T23:43:55.273673Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-01-27T23:24:18.241009Z", "last_refresh": "2024-01-27T23:43:57.930536Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-01-27T23:27:35.308165Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-01-27T23:27:39.459156Z", "last_refresh": "2024-01-27T23:43:55.273919Z", "ports": [8800], "running": 2, "size": 2}}] 2024-01-27T23:46:29.147 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:46:27.899275+0000 mgr.smithi073.msdoog (mgr.14182) 1152 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-ocwatu 2024-01-27T23:46:29.147 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-ocwatu 2024-01-27T23:46:29.147 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.ocwatu 2024-01-27T23:46:29.147 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.ocwatu 2024-01-27T23:46:29.147 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Deploy daemon haproxy.nfs.foo.smithi186.ocwatu ... 2024-01-27T23:46:29.147 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:46:29.147 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2024-01-27T23:46:29.148 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:44:35Z" level=warning msg="Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:46:29.148 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:45:12Z" level=warning msg="Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:46:29.148 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:45:50Z" level=warning msg="Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:46:29.148 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2024-01-27T23:46:29.148 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:46:29.148 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Traceback (most recent call last): 2024-01-27T23:46:29.148 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:46:29.148 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: yield (conn, connr) 2024-01-27T23:46:29.148 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:46:29.148 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: code, '\n'.join(err))) 2024-01-27T23:46:29.148 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-ocwatu 2024-01-27T23:46:29.148 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-ocwatu 2024-01-27T23:46:29.148 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.ocwatu 2024-01-27T23:46:29.149 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.ocwatu 2024-01-27T23:46:29.149 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Deploy daemon haproxy.nfs.foo.smithi186.ocwatu ... 2024-01-27T23:46:29.149 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:46:29.149 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2024-01-27T23:46:29.149 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:44:35Z" level=warning msg="Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:46:29.149 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:45:12Z" level=warning msg="Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:46:29.149 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:45:50Z" level=warning msg="Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:46:29.149 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2024-01-27T23:46:29.149 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:46:29.149 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:46:27.899438+0000 mgr.smithi073.msdoog (mgr.14182) 1153 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi186.ocwatu 2024-01-27T23:46:29.149 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: audit 2024-01-27T23:46:27.899704+0000 mon.smithi073 (mon.0) 725 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi186.ocwatu"}]: dispatch 2024-01-27T23:46:29.149 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:46:27.900235+0000 mgr.smithi073.msdoog (mgr.14182) 1154 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi186.ocwatu on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-ocwatu 2024-01-27T23:46:29.149 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-ocwatu 2024-01-27T23:46:29.149 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.ocwatu 2024-01-27T23:46:29.150 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.ocwatu 2024-01-27T23:46:29.150 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: Deploy daemon haproxy.nfs.foo.smithi186.ocwatu ... 2024-01-27T23:46:29.150 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:46:29.150 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2024-01-27T23:46:29.150 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:44:35Z" level=warning msg="Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:46:29.150 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:45:12Z" level=warning msg="Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:46:29.150 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr time="2024-01-27T23:45:50Z" level=warning msg="Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:46:29.150 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: stat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2024-01-27T23:46:29.150 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: 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=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:46:29.150 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:28 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cephadm 2024-01-27T23:46:27.901932+0000 mgr.smithi073.msdoog (mgr.14182) 1155 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi073.iqnqac on smithi073 2024-01-27T23:46:29.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:46:27.899275+0000 mgr.smithi073.msdoog (mgr.14182) 1152 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-ocwatu 2024-01-27T23:46:29.264 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-ocwatu 2024-01-27T23:46:29.264 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.ocwatu 2024-01-27T23:46:29.264 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.ocwatu 2024-01-27T23:46:29.264 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Deploy daemon haproxy.nfs.foo.smithi186.ocwatu ... 2024-01-27T23:46:29.264 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:46:29.264 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2024-01-27T23:46:29.264 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:44:35Z" level=warning msg="Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:46:29.264 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:45:12Z" level=warning msg="Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:46:29.264 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:45:50Z" level=warning msg="Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:46:29.264 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2024-01-27T23:46:29.264 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:46:29.264 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Traceback (most recent call last): 2024-01-27T23:46:29.264 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-01-27T23:46:29.265 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: yield (conn, connr) 2024-01-27T23:46:29.265 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-01-27T23:46:29.265 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: code, '\n'.join(err))) 2024-01-27T23:46:29.265 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-ocwatu 2024-01-27T23:46:29.265 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-ocwatu 2024-01-27T23:46:29.265 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.ocwatu 2024-01-27T23:46:29.265 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.ocwatu 2024-01-27T23:46:29.265 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Deploy daemon haproxy.nfs.foo.smithi186.ocwatu ... 2024-01-27T23:46:29.265 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:46:29.265 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2024-01-27T23:46:29.265 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:44:35Z" level=warning msg="Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:46:29.265 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:45:12Z" level=warning msg="Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:46:29.265 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:45:50Z" level=warning msg="Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:46:29.265 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2024-01-27T23:46:29.266 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:46:29.266 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:46:27.899438+0000 mgr.smithi073.msdoog (mgr.14182) 1153 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi186.ocwatu 2024-01-27T23:46:29.266 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: audit 2024-01-27T23:46:27.899704+0000 mon.smithi073 (mon.0) 725 : audit [INF] from='mgr.14182 172.21.15.73:0/62093354' entity='mgr.smithi073.msdoog' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi186.ocwatu"}]: dispatch 2024-01-27T23:46:29.266 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:46:27.900235+0000 mgr.smithi073.msdoog (mgr.14182) 1154 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi186.ocwatu on smithi186: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-ocwatu 2024-01-27T23:46:29.266 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy-nfs-foo-smithi186-ocwatu 2024-01-27T23:46:29.266 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.ocwatu 2024-01-27T23:46:29.266 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: /bin/podman: stderr Error: no such container ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-haproxy.nfs.foo.smithi186.ocwatu 2024-01-27T23:46:29.266 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: Deploy daemon haproxy.nfs.foo.smithi186.ocwatu ... 2024-01-27T23:46:29.266 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:46:29.266 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2024-01-27T23:46:29.266 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:44:35Z" level=warning msg="Failed, retrying in 1s ... (1/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:46:29.266 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:45:12Z" level=warning msg="Failed, retrying in 1s ... (2/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:46:29.266 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr time="2024-01-27T23:45:50Z" level=warning msg="Failed, retrying in 1s ... (3/3). Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2024-01-27T23:46:29.266 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: stat: stderr Error: initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: pinging container registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2024-01-27T23:46:29.267 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: 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=smithi186 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-01-27T23:46:29.267 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:28 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cephadm 2024-01-27T23:46:27.901932+0000 mgr.smithi073.msdoog (mgr.14182) 1155 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi073.iqnqac on smithi073 2024-01-27T23:46:29.368 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-01-27T23:46:29.368 ERROR:teuthology.run_tasks:Saw exception from tasks. Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_c856e0f9244dd29a50697123b480d63f16a4ed81/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_c856e0f9244dd29a50697123b480d63f16a4ed81/teuthology/run_tasks.py", line 83, in run_one_task return task(**kwargs) File "/home/teuthworker/src/github.com_ceph_ceph-c_585bdf827237450fb80df4a856eba434a64948fa/qa/tasks/cephadm.py", line 1119, in wait_for_service while proceed(): File "/home/teuthworker/src/git.ceph.com_teuthology_c856e0f9244dd29a50697123b480d63f16a4ed81/teuthology/contextutil.py", line 134, in __call__ raise MaxWhileTries(error_msg) teuthology.exceptions.MaxWhileTries: reached maximum tries (301) after waiting for 300 seconds 2024-01-27T23:46:29.623 ERROR:teuthology.util.sentry: Sentry event: https://sentry.ceph.com/organizations/ceph/?query=62f9fc1f01a54e5781be765e06a31cc8 Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_c856e0f9244dd29a50697123b480d63f16a4ed81/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_c856e0f9244dd29a50697123b480d63f16a4ed81/teuthology/run_tasks.py", line 83, in run_one_task return task(**kwargs) File "/home/teuthworker/src/github.com_ceph_ceph-c_585bdf827237450fb80df4a856eba434a64948fa/qa/tasks/cephadm.py", line 1119, in wait_for_service while proceed(): File "/home/teuthworker/src/git.ceph.com_teuthology_c856e0f9244dd29a50697123b480d63f16a4ed81/teuthology/contextutil.py", line 134, in __call__ raise MaxWhileTries(error_msg) teuthology.exceptions.MaxWhileTries: reached maximum tries (301) after waiting for 300 seconds 2024-01-27T23:46:29.624 DEBUG:teuthology.run_tasks:Unwinding manager vip 2024-01-27T23:46:29.635 INFO:tasks.vip:Removing 10.0.15.73 (and any VIPs) on smithi073.front.sepia.ceph.com iface enp3s0f1... 2024-01-27T23:46:29.635 DEBUG:teuthology.orchestra.run.smithi073:> sudo ip addr del 10.0.15.73/16 dev enp3s0f1 2024-01-27T23:46:29.669 DEBUG:teuthology.orchestra.run.smithi073:> sudo ip addr del 10.0.31.73/16 dev enp3s0f1 2024-01-27T23:46:29.737 INFO:teuthology.orchestra.run.smithi073.stderr:RTNETLINK answers: Cannot assign requested address 2024-01-27T23:46:29.738 DEBUG:teuthology.orchestra.run:got remote process result: 2 2024-01-27T23:46:29.739 INFO:tasks.vip:Removing 10.0.15.186 (and any VIPs) on smithi186.front.sepia.ceph.com iface enp3s0f1... 2024-01-27T23:46:29.739 DEBUG:teuthology.orchestra.run.smithi186:> sudo ip addr del 10.0.15.186/16 dev enp3s0f1 2024-01-27T23:46:29.791 DEBUG:teuthology.orchestra.run.smithi186:> sudo ip addr del 10.0.31.73/16 dev enp3s0f1 2024-01-27T23:46:29.820 INFO:teuthology.orchestra.run.smithi186.stderr:RTNETLINK answers: Cannot assign requested address 2024-01-27T23:46:29.821 DEBUG:teuthology.orchestra.run:got remote process result: 2 2024-01-27T23:46:29.821 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-01-27T23:46:29.831 INFO:tasks.cephadm:Teardown begin 2024-01-27T23:46:29.832 DEBUG:teuthology.orchestra.run.smithi073:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-01-27T23:46:29.859 DEBUG:teuthology.orchestra.run.smithi186:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-01-27T23:46:29.891 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-01-27T23:46:29.891 DEBUG:teuthology.orchestra.run.smithi073:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-01-27T23:46:29.917 DEBUG:teuthology.orchestra.run.smithi186:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-01-27T23:46:29.949 INFO:tasks.cephadm:Stopping all daemons... 2024-01-27T23:46:29.949 INFO:tasks.cephadm.mon.smithi073:Stopping mon.smithi073... 2024-01-27T23:46:29.949 DEBUG:teuthology.orchestra.run.smithi073:> sudo systemctl stop ceph-0959bd62-bd6b-11ee-95b2-87774f69a715@mon.smithi073 2024-01-27T23:46:29.981 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:29 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: cluster 2024-01-27T23:46:28.306063+0000 mgr.smithi073.msdoog (mgr.14182) 1156 : cluster [DBG] pgmap v685: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:46:30.233 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:29 smithi073 systemd[1]: Stopping Ceph mon.smithi073 for 0959bd62-bd6b-11ee-95b2-87774f69a715... 2024-01-27T23:46:30.233 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:30 smithi073 bash[157318]: Error: no container with name or ID "ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon.smithi073" found: no such container 2024-01-27T23:46:30.234 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:30 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:46:30.209+0000 7fa8857e9700 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.smithi073 -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 2024-01-27T23:46:30.234 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:30 smithi073 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073[32862]: debug 2024-01-27T23:46:30.209+0000 7fa8857e9700 -1 mon.smithi073@0(leader) e2 *** Got Signal Terminated *** 2024-01-27T23:46:30.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:29 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: cluster 2024-01-27T23:46:28.306063+0000 mgr.smithi073.msdoog (mgr.14182) 1156 : cluster [DBG] pgmap v685: 225 pgs: 225 active+clean; 7.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-01-27T23:46:30.563 INFO:journalctl@ceph.mon.smithi073.smithi073.stdout:Jan 27 23:46:30 smithi073 bash[157356]: ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi073 2024-01-27T23:46:30.770 DEBUG:teuthology.orchestra.run.smithi073:> sudo pkill -f 'journalctl -f -n 0 -u ceph-0959bd62-bd6b-11ee-95b2-87774f69a715@mon.smithi073.service' 2024-01-27T23:46:30.861 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-01-27T23:46:30.861 INFO:tasks.cephadm.mon.smithi073:Stopped mon.smithi073 2024-01-27T23:46:30.862 INFO:tasks.cephadm.mon.smithi186:Stopping mon.smithi186... 2024-01-27T23:46:30.862 DEBUG:teuthology.orchestra.run.smithi186:> sudo systemctl stop ceph-0959bd62-bd6b-11ee-95b2-87774f69a715@mon.smithi186 2024-01-27T23:46:31.263 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:30 smithi186 systemd[1]: Stopping Ceph mon.smithi186 for 0959bd62-bd6b-11ee-95b2-87774f69a715... 2024-01-27T23:46:31.264 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:30 smithi186 bash[57243]: Error: no container with name or ID "ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon.smithi186" found: no such container 2024-01-27T23:46:31.264 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:31 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:46:31.125+0000 7f6922e95700 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.smithi186 -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 2024-01-27T23:46:31.264 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:31 smithi186 ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186[36610]: debug 2024-01-27T23:46:31.125+0000 7f6922e95700 -1 mon.smithi186@1(peon) e2 *** Got Signal Terminated *** 2024-01-27T23:46:31.913 INFO:journalctl@ceph.mon.smithi186.smithi186.stdout:Jan 27 23:46:31 smithi186 bash[57282]: ceph-0959bd62-bd6b-11ee-95b2-87774f69a715-mon-smithi186 2024-01-27T23:46:31.920 DEBUG:teuthology.orchestra.run.smithi186:> sudo pkill -f 'journalctl -f -n 0 -u ceph-0959bd62-bd6b-11ee-95b2-87774f69a715@mon.smithi186.service' 2024-01-27T23:46:31.965 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-01-27T23:46:31.966 INFO:tasks.cephadm.mon.smithi186:Stopped mon.smithi186 2024-01-27T23:46:31.966 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 --force --keep-logs 2024-01-27T23:49:51.794 DEBUG:teuthology.orchestra.run.smithi186:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 --force --keep-logs 2024-01-27T23:50:32.496 DEBUG:teuthology.orchestra.run.smithi073:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-01-27T23:50:32.537 DEBUG:teuthology.orchestra.run.smithi186:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-01-27T23:50:32.567 INFO:tasks.cephadm:Archiving crash dumps... 2024-01-27T23:50:32.594 DEBUG:teuthology.misc:Transferring archived files from smithi073:/var/lib/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/crash to /home/teuthworker/archive/yuriw-2024-01-26_16:10:31-rados-pacific-release-distro-default-smithi/7535127/remote/ubuntu@smithi073.front.sepia.ceph.com/crash 2024-01-27T23:50:32.595 DEBUG:teuthology.orchestra.run.smithi073:> sudo tar c -f - -C /var/lib/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/crash -- . 2024-01-27T23:50:32.637 INFO:teuthology.orchestra.run.smithi073.stderr:tar: /var/lib/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/crash: Cannot open: No such file or directory 2024-01-27T23:50:32.638 INFO:teuthology.orchestra.run.smithi073.stderr:tar: Error is not recoverable: exiting now 2024-01-27T23:50:32.639 DEBUG:teuthology.misc:Transferring archived files from smithi186:/var/lib/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/crash to /home/teuthworker/archive/yuriw-2024-01-26_16:10:31-rados-pacific-release-distro-default-smithi/7535127/remote/ubuntu@smithi186.front.sepia.ceph.com/crash 2024-01-27T23:50:32.640 DEBUG:teuthology.orchestra.run.smithi186:> sudo tar c -f - -C /var/lib/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/crash -- . 2024-01-27T23:50:32.678 INFO:teuthology.orchestra.run.smithi186.stderr:tar: /var/lib/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/crash: Cannot open: No such file or directory 2024-01-27T23:50:32.679 INFO:teuthology.orchestra.run.smithi186.stderr:tar: Error is not recoverable: exiting now 2024-01-27T23:50:32.680 INFO:tasks.cephadm:Checking cluster log for badness... 2024-01-27T23:50:32.680 DEBUG:teuthology.orchestra.run.smithi073:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | head -n 1 2024-01-27T23:50:32.710 INFO:teuthology.orchestra.run.smithi073.stderr:grep: /var/log/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/ceph.log: No such file or directory 2024-01-27T23:50:32.712 INFO:tasks.cephadm:Compressing logs... 2024-01-27T23:50:32.712 DEBUG:teuthology.orchestra.run.smithi073:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-01-27T23:50:32.754 DEBUG:teuthology.orchestra.run.smithi186:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-01-27T23:50:32.781 INFO:teuthology.orchestra.run.smithi073.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-01-27T23:50:32.782 INFO:teuthology.orchestra.run.smithi073.stderr:: No such file or directory 2024-01-27T23:50:32.782 INFO:teuthology.orchestra.run.smithi073.stderr:gzip -5 --verbose -- /var/log/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/ceph-osd.5.log 2024-01-27T23:50:32.782 INFO:teuthology.orchestra.run.smithi073.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/ceph-osd.7.log 2024-01-27T23:50:32.782 INFO:teuthology.orchestra.run.smithi073.stderr:gzip -5 --verbose -- /var/log/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/ceph-osd.1.log 2024-01-27T23:50:32.785 INFO:teuthology.orchestra.run.smithi186.stderr:find: ‘/var/log/rbd-target-api’: No such file or directorygzip 2024-01-27T23:50:32.785 INFO:teuthology.orchestra.run.smithi186.stderr:-5 --verbose -- /var/log/ceph/cephadm.log 2024-01-27T23:50:32.785 INFO:teuthology.orchestra.run.smithi186.stderr:gzip -5 --verbose -- /var/log/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/ceph-osd.2.log 2024-01-27T23:50:32.785 INFO:teuthology.orchestra.run.smithi186.stderr:gzip -5 --verbose -- /var/log/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/ceph-volume.log 2024-01-27T23:50:32.785 INFO:teuthology.orchestra.run.smithi186.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/ceph-osd.0.log 2024-01-27T23:50:32.785 INFO:teuthology.orchestra.run.smithi186.stderr:/var/log/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/ceph-osd.2.log: /var/log/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/ceph-client.rgw.foorgw.smithi186.ddvuyo.log 2024-01-27T23:50:32.785 INFO:teuthology.orchestra.run.smithi186.stderr:/var/log/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/ceph-osd.0.log: gzip -5 --verbose -- /var/log/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/ceph-osd.6.log 2024-01-27T23:50:32.786 INFO:teuthology.orchestra.run.smithi186.stderr:gzip -5 --verbose -- /var/log/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/ceph-mon.smithi186.log 2024-01-27T23:50:32.786 INFO:teuthology.orchestra.run.smithi073.stderr:/var/log/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/ceph-osd.5.log: /var/log/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/ceph-osd.7.log: gzip -5 --verbose -- /var/log/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/ceph-osd.3.log 2024-01-27T23:50:32.786 INFO:teuthology.orchestra.run.smithi073.stderr:gzip -5 --verbose -- /var/log/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/ceph-client.rgw.foorgw.smithi073.mreelv.log 2024-01-27T23:50:32.786 INFO:teuthology.orchestra.run.smithi073.stderr:/var/log/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/ceph-osd.1.log: /var/log/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/ceph-osd.3.log: /var/log/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/ceph-client.rgw.foorgw.smithi073.mreelv.log: 68.9% -- replaced with /var/log/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/ceph-client.rgw.foorgw.smithi073.mreelv.log.gz 2024-01-27T23:50:32.786 INFO:teuthology.orchestra.run.smithi073.stderr:gzip -5 --verbose -- /var/log/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/ceph-volume.log 2024-01-27T23:50:32.786 INFO:teuthology.orchestra.run.smithi073.stderr:gzip -5 --verbose -- /var/log/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/ceph-mgr.smithi073.msdoog.log 2024-01-27T23:50:32.788 INFO:teuthology.orchestra.run.smithi186.stderr:/var/log/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/ceph-client.rgw.foorgw.smithi186.ddvuyo.log: /var/log/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/ceph-osd.6.log: 68.5% -- replaced with /var/log/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/ceph-client.rgw.foorgw.smithi186.ddvuyo.log.gz 2024-01-27T23:50:32.788 INFO:teuthology.orchestra.run.smithi186.stderr:/var/log/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/ceph-mon.smithi186.log: gzip -5 --verbose -- /var/log/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/ceph-mgr.smithi186.vsupqe.log 2024-01-27T23:50:32.788 INFO:teuthology.orchestra.run.smithi186.stderr:/var/log/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/ceph-mgr.smithi186.vsupqe.log: 90.7% -- replaced with /var/log/ceph/cephadm.log.gz 2024-01-27T23:50:32.789 INFO:teuthology.orchestra.run.smithi186.stderr: 92.6% -- replaced with /var/log/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/ceph-volume.log.gz 2024-01-27T23:50:32.789 INFO:teuthology.orchestra.run.smithi186.stderr:gzip -5 --verbose -- /var/log/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/ceph-osd.4.log 2024-01-27T23:50:32.791 INFO:teuthology.orchestra.run.smithi073.stderr:/var/log/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/ceph-volume.log: /var/log/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/ceph-mgr.smithi073.msdoog.log: 92.6% -- replaced with /var/log/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/ceph-volume.log.gz 2024-01-27T23:50:32.792 INFO:teuthology.orchestra.run.smithi186.stderr:/var/log/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/ceph-osd.4.log: 93.2% -- replaced with /var/log/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/ceph-mgr.smithi186.vsupqe.log.gz 2024-01-27T23:50:32.792 INFO:teuthology.orchestra.run.smithi073.stderr:gzip -5 --verbose -- /var/log/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/ceph-mon.smithi073.log 2024-01-27T23:50:32.817 INFO:teuthology.orchestra.run.smithi073.stderr:/var/log/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/ceph-mon.smithi073.log: 94.7% -- replaced with /var/log/ceph/cephadm.log.gz 2024-01-27T23:50:32.973 INFO:teuthology.orchestra.run.smithi073.stderr: 90.4% -- replaced with /var/log/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/ceph-mgr.smithi073.msdoog.log.gz 2024-01-27T23:50:33.001 INFO:teuthology.orchestra.run.smithi186.stderr: 92.6% -- replaced with /var/log/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/ceph-mon.smithi186.log.gz 2024-01-27T23:50:33.446 INFO:teuthology.orchestra.run.smithi073.stderr: 90.5% -- replaced with /var/log/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/ceph-mon.smithi073.log.gz 2024-01-27T23:50:33.658 INFO:teuthology.orchestra.run.smithi073.stderr: 93.6% -- replaced with /var/log/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/ceph-osd.7.log.gz 2024-01-27T23:50:33.750 INFO:teuthology.orchestra.run.smithi186.stderr: 93.4% -- replaced with /var/log/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/ceph-osd.2.log.gz 2024-01-27T23:50:33.782 INFO:teuthology.orchestra.run.smithi073.stderr: 93.4% -- replaced with /var/log/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/ceph-osd.1.log.gz 2024-01-27T23:50:33.803 INFO:teuthology.orchestra.run.smithi186.stderr: 93.7% -- replaced with /var/log/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/ceph-osd.4.log.gz 2024-01-27T23:50:33.862 INFO:teuthology.orchestra.run.smithi186.stderr: 93.3% -- replaced with /var/log/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/ceph-osd.6.log.gz 2024-01-27T23:50:33.872 INFO:teuthology.orchestra.run.smithi186.stderr: 93.5% -- replaced with /var/log/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/ceph-osd.0.log.gz 2024-01-27T23:50:33.874 INFO:teuthology.orchestra.run.smithi186.stderr: 2024-01-27T23:50:33.874 INFO:teuthology.orchestra.run.smithi186.stderr:real 0m1.103s 2024-01-27T23:50:33.874 INFO:teuthology.orchestra.run.smithi186.stderr:user 0m4.224s 2024-01-27T23:50:33.874 INFO:teuthology.orchestra.run.smithi186.stderr:sys 0m0.179s 2024-01-27T23:50:33.931 INFO:teuthology.orchestra.run.smithi073.stderr: 93.5% -- replaced with /var/log/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/ceph-osd.5.log.gz 2024-01-27T23:50:34.166 INFO:teuthology.orchestra.run.smithi073.stderr: 93.5% -- replaced with /var/log/ceph/0959bd62-bd6b-11ee-95b2-87774f69a715/ceph-osd.3.log.gz 2024-01-27T23:50:34.168 INFO:teuthology.orchestra.run.smithi073.stderr: 2024-01-27T23:50:34.168 INFO:teuthology.orchestra.run.smithi073.stderr:real 0m1.398s 2024-01-27T23:50:34.168 INFO:teuthology.orchestra.run.smithi073.stderr:user 0m5.104s 2024-01-27T23:50:34.168 INFO:teuthology.orchestra.run.smithi073.stderr:sys 0m0.207s 2024-01-27T23:50:34.168 INFO:tasks.cephadm:Archiving logs... 2024-01-27T23:50:34.169 DEBUG:teuthology.misc:Transferring archived files from smithi073:/var/log/ceph to /home/teuthworker/archive/yuriw-2024-01-26_16:10:31-rados-pacific-release-distro-default-smithi/7535127/remote/ubuntu@smithi073.front.sepia.ceph.com/log 2024-01-27T23:50:34.170 DEBUG:teuthology.orchestra.run.smithi073:> sudo tar c -f - -C /var/log/ceph -- . 2024-01-27T23:50:35.068 DEBUG:teuthology.misc:Transferring archived files from smithi186:/var/log/ceph to /home/teuthworker/archive/yuriw-2024-01-26_16:10:31-rados-pacific-release-distro-default-smithi/7535127/remote/ubuntu@smithi186.front.sepia.ceph.com/log 2024-01-27T23:50:35.069 DEBUG:teuthology.orchestra.run.smithi186:> sudo tar c -f - -C /var/log/ceph -- . 2024-01-27T23:50:35.740 INFO:tasks.cephadm:Removing cluster... 2024-01-27T23:50:35.741 DEBUG:teuthology.orchestra.run.smithi073:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 --force 2024-01-27T23:50:36.109 DEBUG:teuthology.orchestra.run.smithi186:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 0959bd62-bd6b-11ee-95b2-87774f69a715 --force 2024-01-27T23:50:36.496 INFO:tasks.cephadm:Removing cephadm ... 2024-01-27T23:50:36.496 DEBUG:teuthology.orchestra.run.smithi073:> rm -rf /home/ubuntu/cephtest/cephadm 2024-01-27T23:50:36.514 DEBUG:teuthology.orchestra.run.smithi186:> rm -rf /home/ubuntu/cephtest/cephadm 2024-01-27T23:50:36.531 INFO:tasks.cephadm:Teardown complete 2024-01-27T23:50:36.532 DEBUG:teuthology.run_tasks:Unwinding manager nvme_loop 2024-01-27T23:50:36.543 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi073:/dev/vg_nvme/lv_1... 2024-01-27T23:50:36.544 DEBUG:teuthology.orchestra.run.smithi073:> sudo nvme disconnect -n lv_1 2024-01-27T23:50:36.680 INFO:teuthology.orchestra.run.smithi073.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-01-27T23:50:36.682 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-27T23:50:36.682 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi073:/dev/vg_nvme/lv_2... 2024-01-27T23:50:36.683 DEBUG:teuthology.orchestra.run.smithi073:> sudo nvme disconnect -n lv_2 2024-01-27T23:50:36.813 INFO:teuthology.orchestra.run.smithi073.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-01-27T23:50:36.815 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-27T23:50:36.815 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi073:/dev/vg_nvme/lv_3... 2024-01-27T23:50:36.815 DEBUG:teuthology.orchestra.run.smithi073:> sudo nvme disconnect -n lv_3 2024-01-27T23:50:36.958 INFO:teuthology.orchestra.run.smithi073.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-01-27T23:50:36.959 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-27T23:50:36.959 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi073:/dev/vg_nvme/lv_4... 2024-01-27T23:50:36.959 DEBUG:teuthology.orchestra.run.smithi073:> sudo nvme disconnect -n lv_4 2024-01-27T23:50:37.081 INFO:teuthology.orchestra.run.smithi073.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-01-27T23:50:37.082 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-27T23:50:37.083 DEBUG:teuthology.orchestra.run.smithi073:> set -ex 2024-01-27T23:50:37.083 DEBUG:teuthology.orchestra.run.smithi073:> sudo dd of=/scratch_devs 2024-01-27T23:50:37.109 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi186:/dev/vg_nvme/lv_1... 2024-01-27T23:50:37.110 DEBUG:teuthology.orchestra.run.smithi186:> sudo nvme disconnect -n lv_1 2024-01-27T23:50:37.248 INFO:teuthology.orchestra.run.smithi186.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-01-27T23:50:37.250 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-27T23:50:37.250 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi186:/dev/vg_nvme/lv_2... 2024-01-27T23:50:37.251 DEBUG:teuthology.orchestra.run.smithi186:> sudo nvme disconnect -n lv_2 2024-01-27T23:50:37.391 INFO:teuthology.orchestra.run.smithi186.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-01-27T23:50:37.392 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-27T23:50:37.393 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi186:/dev/vg_nvme/lv_3... 2024-01-27T23:50:37.393 DEBUG:teuthology.orchestra.run.smithi186:> sudo nvme disconnect -n lv_3 2024-01-27T23:50:37.519 INFO:teuthology.orchestra.run.smithi186.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-01-27T23:50:37.520 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-27T23:50:37.520 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi186:/dev/vg_nvme/lv_4... 2024-01-27T23:50:37.521 DEBUG:teuthology.orchestra.run.smithi186:> sudo nvme disconnect -n lv_4 2024-01-27T23:50:37.639 INFO:teuthology.orchestra.run.smithi186.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-01-27T23:50:37.640 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-27T23:50:37.641 DEBUG:teuthology.orchestra.run.smithi186:> set -ex 2024-01-27T23:50:37.641 DEBUG:teuthology.orchestra.run.smithi186:> sudo dd of=/scratch_devs 2024-01-27T23:50:37.668 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-01-27T23:50:37.679 INFO:teuthology.task.clock:Checking final clock skew... 2024-01-27T23:50:37.679 DEBUG:teuthology.orchestra.run.smithi073:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-01-27T23:50:37.682 DEBUG:teuthology.orchestra.run.smithi186:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-01-27T23:50:37.697 INFO:teuthology.orchestra.run.smithi073.stderr:bash: ntpq: command not found 2024-01-27T23:50:37.701 INFO:teuthology.orchestra.run.smithi073.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-01-27T23:50:37.702 INFO:teuthology.orchestra.run.smithi073.stdout:=============================================================================== 2024-01-27T23:50:37.702 INFO:teuthology.orchestra.run.smithi073.stdout:^+ hv01.front.sepia.ceph.com 2 6 377 53 -22us[ -22us] +/- 75ms 2024-01-27T23:50:37.702 INFO:teuthology.orchestra.run.smithi073.stdout:^* hv02.front.sepia.ceph.com 3 6 377 54 +1041us[+1022us] +/- 79ms 2024-01-27T23:50:37.702 INFO:teuthology.orchestra.run.smithi073.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 53 -918us[ -918us] +/- 80ms 2024-01-27T23:50:37.702 INFO:teuthology.orchestra.run.smithi073.stdout:^? hv04.front.sepia.ceph.com 0 9 0 - +0ns[ +0ns] +/- 0ns 2024-01-27T23:50:37.724 INFO:teuthology.orchestra.run.smithi186.stderr:bash: ntpq: command not found 2024-01-27T23:50:37.729 INFO:teuthology.orchestra.run.smithi186.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-01-27T23:50:37.729 INFO:teuthology.orchestra.run.smithi186.stdout:=============================================================================== 2024-01-27T23:50:37.730 INFO:teuthology.orchestra.run.smithi186.stdout:^+ hv01.front.sepia.ceph.com 2 6 377 51 -40us[ -40us] +/- 75ms 2024-01-27T23:50:37.730 INFO:teuthology.orchestra.run.smithi186.stdout:^* hv02.front.sepia.ceph.com 3 6 377 55 +1024us[+1030us] +/- 79ms 2024-01-27T23:50:37.730 INFO:teuthology.orchestra.run.smithi186.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 54 -930us[ -930us] +/- 80ms 2024-01-27T23:50:37.730 INFO:teuthology.orchestra.run.smithi186.stdout:^? hv04.front.sepia.ceph.com 0 9 0 - +0ns[ +0ns] +/- 0ns 2024-01-27T23:50:37.730 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-01-27T23:50:37.741 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-01-27T23:50:37.741 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-01-27T23:50:37.751 DEBUG:teuthology.orchestra.run.smithi073:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2024-01-27T23:50:37.826 DEBUG:teuthology.orchestra.run.smithi186:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2024-01-27T23:50:37.886 DEBUG:teuthology.orchestra.run.smithi073:> 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 2024-01-27T23:50:37.917 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-27T23:50:37.917 DEBUG:teuthology.orchestra.run.smithi186:> 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 2024-01-27T23:50:37.946 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-27T23:50:37.946 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-01-27T23:50:37.962 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-01-27T23:50:37.973 INFO:teuthology.task.internal:Duration was 2174.899157 seconds 2024-01-27T23:50:37.973 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-01-27T23:50:37.984 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-01-27T23:50:37.984 DEBUG:teuthology.orchestra.run.smithi073:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-01-27T23:50:37.986 DEBUG:teuthology.orchestra.run.smithi186:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-01-27T23:50:38.031 INFO:teuthology.orchestra.run.smithi073.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-01-27T23:50:38.034 INFO:teuthology.orchestra.run.smithi186.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-01-27T23:50:38.276 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-01-27T23:50:38.277 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi073.front.sepia.ceph.com 2024-01-27T23:50:38.277 DEBUG:teuthology.orchestra.run.smithi073:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-01-27T23:50:38.300 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi186.front.sepia.ceph.com 2024-01-27T23:50:38.300 DEBUG:teuthology.orchestra.run.smithi186:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-01-27T23:50:38.322 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-01-27T23:50:38.322 DEBUG:teuthology.orchestra.run.smithi073:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-01-27T23:50:38.342 DEBUG:teuthology.orchestra.run.smithi186:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-01-27T23:50:38.418 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-01-27T23:50:38.418 DEBUG:teuthology.orchestra.run.smithi073:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-01-27T23:50:38.420 DEBUG:teuthology.orchestra.run.smithi186:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-01-27T23:50:38.578 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-01-27T23:50:38.589 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-01-27T23:50:38.589 DEBUG:teuthology.orchestra.run.smithi073:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-01-27T23:50:38.617 DEBUG:teuthology.orchestra.run.smithi186:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-01-27T23:50:38.645 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-01-27T23:50:38.656 DEBUG:teuthology.orchestra.run.smithi073:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-01-27T23:50:38.659 DEBUG:teuthology.orchestra.run.smithi186:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-01-27T23:50:38.683 INFO:teuthology.orchestra.run.smithi073.stdout:kernel.core_pattern = core 2024-01-27T23:50:38.712 INFO:teuthology.orchestra.run.smithi186.stdout:kernel.core_pattern = core 2024-01-27T23:50:38.739 DEBUG:teuthology.orchestra.run.smithi073:> test -e /home/ubuntu/cephtest/archive/coredump 2024-01-27T23:50:38.757 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-27T23:50:38.757 DEBUG:teuthology.orchestra.run.smithi186:> test -e /home/ubuntu/cephtest/archive/coredump 2024-01-27T23:50:38.794 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-27T23:50:38.795 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-01-27T23:50:38.806 INFO:teuthology.task.internal:Transferring archived files... 2024-01-27T23:50:38.807 DEBUG:teuthology.misc:Transferring archived files from smithi073:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/yuriw-2024-01-26_16:10:31-rados-pacific-release-distro-default-smithi/7535127/remote/smithi073 2024-01-27T23:50:38.808 DEBUG:teuthology.orchestra.run.smithi073:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-01-27T23:50:38.856 DEBUG:teuthology.misc:Transferring archived files from smithi186:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/yuriw-2024-01-26_16:10:31-rados-pacific-release-distro-default-smithi/7535127/remote/smithi186 2024-01-27T23:50:38.857 DEBUG:teuthology.orchestra.run.smithi186:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-01-27T23:50:38.897 INFO:teuthology.task.internal:Removing archive directory... 2024-01-27T23:50:38.897 DEBUG:teuthology.orchestra.run.smithi073:> rm -rf -- /home/ubuntu/cephtest/archive 2024-01-27T23:50:38.900 DEBUG:teuthology.orchestra.run.smithi186:> rm -rf -- /home/ubuntu/cephtest/archive 2024-01-27T23:50:38.948 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-01-27T23:50:38.962 INFO:teuthology.task.internal:Not uploading archives. 2024-01-27T23:50:38.962 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-01-27T23:50:39.012 INFO:teuthology.task.internal:Tidying up after the test... 2024-01-27T23:50:39.013 DEBUG:teuthology.orchestra.run.smithi073:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-01-27T23:50:39.015 DEBUG:teuthology.orchestra.run.smithi186:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-01-27T23:50:39.029 INFO:teuthology.orchestra.run.smithi073.stdout: 262158 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Jan 27 23:50 /home/ubuntu/cephtest 2024-01-27T23:50:39.031 INFO:teuthology.orchestra.run.smithi186.stdout: 262179 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Jan 27 23:50 /home/ubuntu/cephtest 2024-01-27T23:50:39.033 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-01-27T23:50:39.044 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-01-27T23:50:39.071 INFO:teuthology.nuke:Checking targets against current locks 2024-01-27T23:50:39.097 DEBUG:teuthology.nuke:shortname: smithi073 2024-01-27T23:50:39.097 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-01-27T23:50:39.121 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi073.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2024-01-26_16:10:31-rados-pacific-release-distro-default-smithi/7535127', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'rhel', 'os_version': '8.6', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-01-27 23:08:38.351205', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBD1jr2PBkfiBOz1zLNWHnZt13lAFWpjt6GJeYYqA5HFCB/xp9h9RUytssq/jbCs5zkNCgtgqPQRYTFxvF1sBfI8='} 2024-01-27T23:50:39.125 DEBUG:teuthology.nuke:shortname: smithi186 2024-01-27T23:50:39.125 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-01-27T23:50:39.147 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi186.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2024-01-26_16:10:31-rados-pacific-release-distro-default-smithi/7535127', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'rhel', 'os_version': '8.6', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-01-27 23:08:38.349785', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBBo0THWkZaj8NWt1tKiRZ3eCsTf7cSvoEEN/eDG31ICG9zxE5E5XMyIbSVcmkt71Oms9CfmXkQiVrXWGYoFWp1Y='} 2024-01-27T23:50:39.174 INFO:teuthology.orchestra.console.smithi073:Power off 2024-01-27T23:50:39.175 DEBUG:teuthology.orchestra.console.smithi073:pexpect command: ipmitool -H smithi073.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-01-27T23:50:39.199 DEBUG:teuthology.orchestra.console.smithi073:power off output: Chassis Power Control: Down/Off 2024-01-27T23:50:39.199 DEBUG:teuthology.orchestra.console.smithi073:pexpect command: ipmitool -H smithi073.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-01-27T23:50:39.216 INFO:teuthology.orchestra.console.smithi186:Power off 2024-01-27T23:50:39.216 DEBUG:teuthology.orchestra.console.smithi186:pexpect command: ipmitool -H smithi186.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-01-27T23:50:39.226 DEBUG:teuthology.orchestra.console.smithi073:check power output: Chassis Power is on 2024-01-27T23:50:39.239 DEBUG:teuthology.orchestra.console.smithi186:power off output: Chassis Power Control: Down/Off 2024-01-27T23:50:39.239 DEBUG:teuthology.orchestra.console.smithi186:pexpect command: ipmitool -H smithi186.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-01-27T23:50:39.262 DEBUG:teuthology.orchestra.console.smithi186:check power output: Chassis Power is on 2024-01-27T23:50:43.227 DEBUG:teuthology.orchestra.console.smithi073:pexpect command: ipmitool -H smithi073.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-01-27T23:50:43.263 DEBUG:teuthology.orchestra.console.smithi186:pexpect command: ipmitool -H smithi186.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-01-27T23:50:43.338 DEBUG:teuthology.orchestra.console.smithi073:check power output: Chassis Power is on 2024-01-27T23:50:43.374 DEBUG:teuthology.orchestra.console.smithi186:check power output: Chassis Power is on 2024-01-27T23:50:47.340 DEBUG:teuthology.orchestra.console.smithi073:pexpect command: ipmitool -H smithi073.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-01-27T23:50:47.374 DEBUG:teuthology.orchestra.console.smithi186:pexpect command: ipmitool -H smithi186.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-01-27T23:50:47.452 DEBUG:teuthology.orchestra.console.smithi073:check power output: Chassis Power is off 2024-01-27T23:50:47.485 DEBUG:teuthology.orchestra.console.smithi186:check power output: Chassis Power is off 2024-01-27T23:50:47.553 INFO:teuthology.orchestra.console.smithi073:Power off completed 2024-01-27T23:50:47.586 INFO:teuthology.orchestra.console.smithi186:Power off completed 2024-01-27T23:50:47.691 INFO:teuthology.run:Summary data: description: rados/cephadm/smoke-roleless/{0-distro/rhel_8.6_container_tools_rhel8 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-bucket 3-final} duration: 2174.8991565704346 failure_reason: reached maximum tries (301) after waiting for 300 seconds owner: scheduled_yuriw@teuthology sentry_event: https://sentry.ceph.com/organizations/ceph/?query=62f9fc1f01a54e5781be765e06a31cc8 status: fail success: false 2024-01-27T23:50:47.691 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-01-27T23:50:47.767 INFO:teuthology.run:FAIL